-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.12 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.12 KB
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
36
37
38
39
<html>
<head>
<title>Random Brawler</title>
<link
href="https://fonts.googleapis.com/css?family=Lilita+One&display=swap"
rel="stylesheet"
/>
<link rel="manifest" href="manifest.json" />
<link rel="apple-touch-icon" href="/icon.png" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<link rel="stylesheet" href="styles.css" />
<script src="./src/index.js" type="module"></script>
</head>
<body>
<div id="actions">
<button id="add" class="icon-button" onclick="add()">
<img src="/assets/add-person.svg" />
</button>
<button id="refresh" class="icon-button" onclick="refresh()">
<img src="/assets/refresh.svg" />
</button>
</div>
<div id="teams">
<div id="team1"></div>
<div id="team2"></div>
</div>
<div id="map"></div>
<div id="modes"></div>
</body>
</html>