-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 2.17 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Tube Rush</title>
<link rel="shortcut icon" href="https://s.ytimg.com/yts/img/favicon-vflz7uhzw.ico" type="image/x-icon"/>
<!-- start styles -->
<link rel="stylesheet" href="css/index.css"/>
<!-- end styles -->
</head>
<body>
<section class="Landing">
<header class="Header">
<div class="Header-container u-wrapper">
<div class="Header-menuContainer">
<a href="/" title="Tuberush.com" class="Header-logo">
<img src="images/logo.png" alt="Tuberush.com" height="36px"/>
</a>
<nav class="MainMenu">
<ul class="MainMenu-container">
<li class="MainMenu-option active">
<a href="#" class="MainMenu-link">Home</a>
</li>
<li class="MainMenu-option">
<a href="#" class="MainMenu-link">Home</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<section class="RecentVideos">
<div class="u-wrapper">
<ul id="lastVideos">
</ul>
</div>
</section>
<section class="MainSection">
<div class="MainSection-container u-wrapper">
<h1 class="MainSection-title title-Main">Insert video url</h1>
<div class="MainSection-form">
<input type="text" id="youtube-url" class="input-text" placeholder="https://www.youtube.com/watch?v=th2pq6iRvyI"/>
<button id="youtube-button" class="btn-primary btn-lg">Generate Download Links</button>
</div>
<div class="MainSection-result" id="result">
</div>
</div>
</section>
<footer class="Footer">
<div class="Footer-container u-wrapper">
<span>Tube Rush</span>
<span class="u-right">developer by <a href="https://www.facebook.com/nwochap" target="_blank">wochap</a></span>
</div>
</footer>
</section>
<!-- start scrips -->
<!-- <script src="http://code.jquery.com/jquery-1.11.2.min.js"></script> -->
<script src="https://cdn.socket.io/socket.io-1.3.4.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src='js/nprogress.js'></script>
<script type="text/javascript" src="js/index.js"></script>
<!-- end scrips -->
</body>
</html>