forked from azaleamollis/advent-calendar
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
38 lines (28 loc) · 977 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Advent Calendar</title>
<!-- Mobile-friendly viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Style sheet link -->
<link rel='stylesheet' href='//fonts.googleapis.com/css?family=Lato:300,400,700'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/ionicons/1.5.2/css/ionicons.min.css">
<link rel="stylesheet" href="style.css" media="all">
</head>
<body>
<header class="demo-header cf">
<h1>Advent Calendar</h1>
<a href="http://hongkiat.com">Go to the Article</a>
</header>
<div class="demo-content cf">
<article>
<h1>Advent Calendar</h1>
<img src="images/background.jpg" alt="Advent Calendar" width="400" height="533" id="adventCal">
<ul id="adventDoors"></ul>
</article>
</div>
<script src="scripts/messages.js"></script>
<script src="scripts/calendar.js"></script>
</body>
</html>