-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (42 loc) · 1.63 KB
/
index.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZTube - Youtube Downloader</title>
<!--CSS Styles-->
<link rel="stylesheet" href="../css/background.css">
<link rel="stylesheet" href="../css/text.css">
<link rel="stylesheet" href="../css/video.css">
<link rel="stylesheet" href="../css/button.css">
<!--CSS Google fonts-->
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital@1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Andika+New+Basic&display=swap" rel="stylesheet">
<!--Scripts-->
<script src="../js/formLinkSubmitter.js"></script>
</head>
<body>
<div class="background">
<p id="verticalAligner"></p>
<h1 class="title">ZTube</h1>
<p class="bg_description">A place to download your videos all at once</p>
</div>
<form>
<p class="text">Insert the video's link:</p>
<div id="buttonDownload">
<input id="link" type="text" name="link" placeholder="https://youtu.be/...">
</div>
<div id="buttonClick">
<button id="submitForm">Download</button>
</div>
</form>
<div id="video">
<iframe id="videoPlayer" width="640" height="360" src="https://www.youtube.com/embed/bE31y5HbukA" allowfullscreen frameborder="0"></iframe>
<p>a</p>
</div>
<footer class="footer">
<p id="stickyCopy">© 2020 - Fabri</p>
</footer>
</body>
</html>