Files
archived-youtubeDownloader/index.html
balajinikhil 4fe525ff3c fix
2020-04-13 19:05:14 +05:30

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>