-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (40 loc) · 1.35 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
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Y|BOOST</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js"></script>
</head>
<body>
<header>
<div class="container">
<h1>Y|Boost</h1>
<nav>
<ul>
<li><img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/aratheunseen/yboost?style=for-the-badge&color=black"></li>
</ul>
</nav>
</div>
</header>
<div class="divider"></div>
<section id="config">
<fieldset>
<legend>Config Booster</legend>
<label for="url">Video URL</label>
<input type="text" name="url" id="url" placeholder="https://www.youtube.com/embed/_ABc1DeF2Gh">
<label for="views">Views</label>
<input type="number" name="views" id="views" min="1" placeholder="21">
<input type="submit" onclick="Boost()" value="BOOST">
</fieldset>
</section>
<section id="content">
<div id="video" class="container"></div>
</section>
<div class="divider"></div>
<footer>
<p>© <script>document.write(new Date().getFullYear())</script> Y|BOOST</p>
</footer>
</body>
</html>