File size: 789 Bytes
9c587a4
 
8b9ff98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!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>