-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.18 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
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<link rel="shortcut icon" href="./res/img/favicon.png" type="image/x-icon">
<title>My Sims City</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='./style.css'>
</head>
<body>
<div class="header">
<div class="left-side">
<img class="logo" src="./res/img/favicon.png">
<span class="spacing"></span>
<button class="btn">Tutorial</button>
</div>
<div class="middle-side">
<span class="time"></span>
</div>
<div class="right-side">
<button class="boton" name="mute" value="on"><img style="height: 20px; width: 20px; float: right;" src="./res/img/volume.png"></button>
<div id="performance"></div>
</div>
</div>
<section id="loading-screen">
<div id="loader"></div>
</section>
<script type="module" src='./scripts.js'></script>
<script src="https://rawcdn.githack.com/nextapps-de/winbox/0.2.0/dist/winbox.bundle.js"></script>
</body>
</html>