-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.75 KB
/
Copy pathindex.html
File metadata and controls
47 lines (41 loc) · 1.75 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="files/download-icon.png">
<link rel="stylesheet" href="style.css">
<title>Youtube video downloader</title>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8887963681138430"
crossorigin="anonymous"></script>
</head>
<body>
<div class="full">
<section>
<h1>Youtube download</h1>
<div class="link-container">
<input type="text" class="link" name="link" placeholder="Enter video link" required>
</div>
<div class="format-container">
<select class="format" required>
<option selected disabled>Select video format</option>
<option value="mp3">MP3</option>
<option value="360">360</option>
<option value="480">480</option>
<option value="720">720</option>
<option value="1080">1080</option>
</select>
</div>
<div class="button-container">
<button class="btn" type="submit" style="width:250px;height:60px;border:0;
overflow:hidden;background-color: #64c896;color: white;" scrolling="no">
Start
</button>
<iframe style="width:250px;height:60px;border:0;overflow:hidden;" scrolling="no" src=""></iframe>
</div>
</section>
</div>
<script src="main.js"></script>
</body>
</html>