-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 968 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Aivirt</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css" />
<link href="./styles/main.css" rel="stylesheet">
</head>
<body>
<nav class="navbar is-dark" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" id="logo">
<img src="https://i.imgur.com/IXjEG6b.png" width="112" height="28">
</a>
<a class="navbar-item" id="logo-message">
Clicking here will reset the game.
</a>
</div>
</nav>
<div id="elm"></div>
<script src="scripts/elm.js"></script>
<script>Elm.Main.init({
node: document.getElementById("elm")
})
</script>
</body>
</html>