-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 901 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
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<link rel="icon" href="./css/game.ico" />
<link rel="stylesheet" href="./css/index.css" />
<title>Imjord Favorite Games Launcher</title>
</head>
<body id="body">
<nav id="nav">
<h3>Favorite Games</h3>
<div>
<button id="add-game">Add Game</button>
<!-- <div class="mode">
<img id="mode-icon" src="./css/mode.ico" alt="dark-light-mode-icon" />
</div> -->
</div>
</nav>
<div class="message">
<p id="message"></p>
</div>
<div class="games-wrapper">
<div class="games-container">
<div>
<ul class="game-list"></ul>
</div>
</div>
</div>
<script src="./renderer.js"></script>
</body>
</html>