-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (42 loc) · 1.54 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<!-- Use this jQuery file if offline -->
<script src="assets/Jquery/Jquery-3.6.0.js"></script>
</head>
<body>
<header>
<nav>
<img src="assets/mixedMessagesLogo.svg" alt="Game Logo" class="logo">
<h1 class="title">The Star Killer</h1>
<img src="assets/Menu-Icon-01.svg" alt="Menu button" class="menu">
<ul>
<li>
<button><a href="">Main</a></button>
</li>
<li>
<button id=""> Hints </button>
</li>
<li>
<button id=""> About </button>
</li>
</ul>
</nav>
</header>
<main>
<div id="root" class="box">
<h1>Welcome Agent #9231</h1>
<p> There has been lot of criminals roaming around<br> We need your help to find out "WHO", "WHERE", and "WHAT WEAPON" was used in each crime.
</p>
<button id="startButton"> Start Game </button>
</div>
</main>
<script type="module" src="app.js"></script>
</body>
</html>