Ytd / index.html
avirt's picture
Update index.html
8b9ff98
raw
history blame contribute delete
789 Bytes
<!DOCTYPE html>
<html>
<head>
<title>YouTube Video Downloader</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1>YouTube Video Downloader</h1>
<label for="youtubeUrl">Enter YouTube Link:</label>
<input type="text" id="youtubeUrl">
<button id="convertButton">Convert</button>
<br>
<label for="formatSelect">Select Format:</label>
<select id="formatSelect">
<option value="mp3">MP3</option>
<option value="mp4_1080p">MP4 (1080p)</option>
<option value="mp4_720p">MP4 (720p)</option>
<option value="mp4_480p">MP4 (480p)</option>
</select>
<br>
<button id="downloadButton" disabled>Download</button>
</div>
<script src="script.js"></script>
</body>
</html>