-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.19 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
<!doctype HTML>
<html>
<head>
<title>potionz</title>
<meta charset="utf-8" name="viewport" content="minimal-ui,width=device-width,initial-scale=1, maximum=1,user-scalable=no">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="icons/icon.16.png">
<link rel="apple-touch-icon" type="image/png" href="icons/icon.57.png">
<link rel="apple-touch-icon" type="image/png" sizes="72x72" href="icons/icon.72.png">
<link rel="apple-touch-icon" type="image/png" sizes="76x76" href="icons/icon.76.png">
<link rel="apple-touch-icon" type="image/png" sizes="114x114" href="icons/icon.114.png">
<link rel="apple-touch-icon" type="image/png" sizes="152x152" href="icons/icon.152.png">
<link rel="icon" type="image/png" href="icons/icon.152.png">
</head>
<body>
<div id="info">
<header>
<h1 id="potion">potionz</h1>
<div id="count"></div>
</header>
</div>
<div id="board">
<div id="message"></div>
<ul id="discovered"></ul>
</div>
<script src="vendor/pablo.min.js"></script>
<script src="potions.js"></script>
<script src="app.js"></script>
</body>
</html>