-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (66 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<!-- Page title -->
<title>TrackLin.es</title>
<link rel="shortcut icon" href="/favicon.png">
<!-- Stylesheet -->
<link rel="stylesheet" href="./css/style.css"> <!-- Regular stylesheet -->
<link rel="stylesheet" href="./css/blue.css"> <!-- Pick color scheme (black.css, blue.css, dark_green.css, green.css, white.css)-->
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Quattrocento" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Raleway:100" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Cantarell:regular,italic,bold" rel="stylesheet" type="text/css">
<!-- JavaScript -->
<script src="./js/jquery-1.5.1.min.js"></script> <!-- Load jQuery library -->
<script src="./js/modernizr-1.7.min.js"></script> <!-- Load Modernizr -->
<script src="./js/jquery.countdown.min.js"></script> <!-- Load jQuery Countdown library -->
<script src="https://unpkg.com/showdown/dist/showdown.min.js"></script>
<script src="https://cms.chewedfeed.com/script"></script> <!-- Load custom scripts -->
<script>
$(function() {
getSoon("track")
});
</script>
</head>
<body>
<div id="pattern">
<div id="gradient">
<!-- Image background -->
<img src="./img/background.jpg" id="background_image" alt="" class="hidden">
<!-- Image background end -->
<!-- Main page -->
<div id="main_page">
<!-- Header -->
<header>
<h1 id="pageTitle"></h1> <!-- Set the page title -->
</header>
<!-- Additional content -->
<div id="content">
<!-- Countdown -->
<section class="countdown">
<div id="countdown"></div>
</section>
<!-- Countdown end -->
<!-- Progress -->
<section class="progress">
<div id="progressbar"></div>
<h2 id="progressAmount">0%</h2> <!-- Set your progress, must be percentage -->
</section>
<!-- Progress end -->
<!-- Short description -->
<section class="description">
<div class="description_top"></div>
<div class="description_content" id="fullDesc">
</div>
<div class="description_bottom"></div>
</section>
<!-- Short description end -->
</div>
</div>
<!-- Main page end -->
</div>
</div>
</body>
</html>