forked from Hexgate-Studios/HexagateLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (25 loc) · 940 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
<!DOCTYPE html>
<html>
<head>
<!--Set some page stuff-->
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'" lang="en-US">
<link href="./styles.css" rel="stylesheet">
<title>Hexagate Launcher</title>
<!--Actual content of app; might move this back to <body>.-->
<div class="topbar">
<h1 id="header" class="center">Hexagate Launcher</h1>
</div>
</head>
<body>
<!--Code for bottom bar-->
<div class="navbar">
<p></p>
<a href="#play", id="playbutton">PLAY</a>
<a href="#settings"><img src="./assets/icons/settingsicon.png", id="settingsbutton"></a>
</div>
<!--Run the renderer - this needs to be at the bottom of the app content-->
<script src="./renderer.js"></script>
</body>
</html>