-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<link rel="apple-touch-icon" href="/logo.svg" sizes="180x180" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shelem</title>
<meta name="description" content="A scoreboard for your shelem game." />
<meta name="theme-color" content="#fcf0c0" />
<link rel="stylesheet" href="./src/index.css" />
<script type="module" src="/src/pages/app-page.ts"></script>
<script type="module" src="/src/components/score-board.ts"></script>
<script type="module" src="/src/components/round-form.ts"></script>
<script type="module" src="/src/components/game-finished.ts"></script>
</head>
<body>
<header>
<img src="/logo.svg" width="52rem" alt="logo" />
<h1>Shelem</h1>
<a href="https://en.wikipedia.org/wiki/Shelem">Wikipedia</a>
</header>
<main>
<app-page></app-page>
</main>
</body>
</html>