-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbingo.html
24 lines (24 loc) · 942 Bytes
/
bingo.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
<html>
<head>
<title>Ocarina of Time Bingo</title>
<meta
content="Generates 'Bingo' boards for Zelda: Ocarina of Time with any bingo version."
name="description"
/>
<meta content="oot bingo, zelda bingo" name="keywords" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link href="/bingo/style/base-styles.css" rel="stylesheet" />
<link href="/bingo/style/info-styles.css" rel="stylesheet" />
<link href="/bingo/style/board-styles.css" rel="stylesheet" />
<link href="/bingo/style/bingo-styles.css" rel="stylesheet" />
<link href="/bingo/style/tracker-styles.css" rel="stylesheet" />
<script type="module" src="lib/bingo-board.js"></script>
<link href="img/favicon.ico" rel="shortcut icon" type="image/x-icon" />
</head>
<body>
<div class="container">
<slot id="bingo-board"></slot>
<slot id="info"></slot>
</div>
</body>
</html>