-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel0.html
More file actions
65 lines (53 loc) · 2.53 KB
/
level0.html
File metadata and controls
65 lines (53 loc) · 2.53 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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">
<!--linking css file -->
<link rel="stylesheet" href="/css/level0.css">
<link rel="stylesheet" href="/css/global.css">
<!-- Font linking -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap" rel="stylesheet">
<title>Home</title>
<link rel="icon" type="image/x-icon" href="assets/favicon (4).ico">
<noscript>Enable Java Script to view this page</noscript>
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<img id="ok" src="./assets/ee.png" alt="logo" width="60vw" height="60vh" style="float: left;">
<h1 class="heading-primary">
elitmus<span>Assignment</span>
</h1>
</nav>
<!-- Home Section -->
<section class="home">
<div class="item-left">
<h1 class="heading-secondary">Treasure <span>Hunt</span></h1>
<p>Complete missions! Find clues and make this game more fun.</p>
<br>
<br>
<button id="play-btn" class="playbtn" title="Click here to begin" >Play</button>
</div>
<br>
<div class="list-group">
<p class="mb-1">
What is treasure Hunt?
</p>
<div class="collapse" id="tt">
A treasure hunt is a game or activity where participants are given clues or a map to follow
in order to find a hidden treasure or prize. The treasure can be anything from a small token
or trinket to a large sum of money or valuable object. Treasure hunts can be organized for a
variety of reasons, including as a fun activity for children's parties, corporate team building
exercises, or community events. The goal of the game is to encourage problem-solving, teamwork,
and creativity as participants work together to decipher clues and uncover the hidden treasure.
</div>
</a>
</div>
</section>
</body>
<script src="/js/level0.js"></script>
</html>