-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·56 lines (48 loc) · 1.23 KB
/
index.html
File metadata and controls
executable file
·56 lines (48 loc) · 1.23 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
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HackHours - Countdown</title>
<!-- CSS -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="fonts/stylesheet.css">
<link rel="stylesheet" href="css/style.css">
<link href="images/favicon.ico" rel="shortcut icon">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/ie.css">
<![endif]-->
<!-- IE fix for HTML5 tags -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="top">
</div>
<header id="header">
<h1></h1>
<p></p>
<div id="logo">
<img id="logo_hackhours" src="assets/images/logo_purple@medium.png" >
<img id="logo_cg" src="assets/images/LogoDepartement76.jpg" >
</div>
</header>
<div id="container">
<div id="row">
<div class="span6">
<div id="main">
<div id="counterContainer">
<div id="counter"></div>
<div id="pre-counter"></div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery-->
<script src="js/jquery.min.js"></script>
<!-- Countdown timer and other animations -->
<script src="js/jquery.countdown.js"></script>
<script src="js/script.js"></script>
</body>
</html>