mirror of
https://github.com/SrIzan10/youtubeDownloader.git
synced 2026-05-01 11:06:58 +00:00
21 lines
510 B
HTML
21 lines
510 B
HTML
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
|
|
<head>
|
|
<link rel='stylesheet' href='./style.css' />
|
|
<title>Youtube Downloader</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class='heading'>Paste YouTube URL</h1>
|
|
<input class='URL-input' placeholder='https://www.youtube.com/watch?v=MtN1YnoL46Q' />
|
|
<select class='opt' name='' id=''>
|
|
<option value='mp3'>mp3</option>
|
|
<option value='mp4'>mp4</option>
|
|
</select>
|
|
|
|
<button class='convert-button' id='mp4'>Convert</button>
|
|
<script src='./script.js'></script>
|
|
</body>
|
|
|
|
</html> |