-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Bucket Makers game schedule</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- icon in the highest resolution we need it for -->
<link rel="icon" href="http://icons.iconarchive.com/icons/chrisl21/minecraft/128/Bucket-Water-icon.png">
<!-- reuse same icon for Safari -->
<link rel="apple-touch-icon" href="http://icons.iconarchive.com/icons/chrisl21/minecraft/128/Bucket-Water-icon.png">
<!-- multiple icons for IE -->
<meta name="msapplication-square310x310logo" content="http://icons.iconarchive.com/icons/chrisl21/minecraft/128/Bucket-Water-icon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<ul class="games">
<h1 class="title">
Bucket Makers game schedule
</h1>
<button class="button--load">
Toggle previous games
</button>
</ul>
<script src='https://cdnjs.cloudflare.com/ajax/libs/fecha/2.3.1/fecha.min.js'></script>
<script src="main-min.js"></script>
</body>
</html>