Files
archived-youtubeDownloader/index.html

21 lines
484 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'>
<option value='mp3'>mp3</option>
<option value='mp4'>mp4</option>
</select>
<button class='convert-button' id='btn'>Convert</button>
<script src='./script.js'></script>
</body>
</html>