-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (61 loc) · 2.22 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<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=Handjet&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.rtl.min.css"
integrity="sha384-dc2NSrAXbAkjrdm9IYrX10fQq9SDG6Vjz7nQVKdKcJl3pC+k37e7qJR5MVSCS+wR"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="home.css" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="/images/icon.png" />
<script src="components/header.js" type="text/javascript" defer></script>
<script src="components/footer.js" type="text/javascript" defer></script>
<!-- <link rel="stylesheet" href="h1-style.css"> -->
<title>Mystery Number Hunt</title>
</head>
<body id="body" class="light">
<header-component></header-component>
<div
style="
display: flex;
justify-content: center;
align-self: center;
border: 1px solid;
margin: 10px;
padding: 10px;
border-radius: 5px;
max-width: 400px;
"
>
<p>
"Mystery Number Hunt" is an exciting number guessing game that
challenges players to use their deduction skills and intuition to
identify a secret number within a specified range. The game's objective
is simple: uncover the hidden mystery number with as few attempts as
possible.
</p>
</div>
<div style="margin-top: 40px">
<div style="font-size: 5.9vmin">Choose Difficulty Level</div>
<div class="box-container">
<div class="box" id="easy-box"><p>Easy: 1-10</p></div>
<div class="box" id="medium-box"><p>Medium: 1-100</p></div>
<div class="box" id="hard-box"><p>Hard: 1-1000</p></div>
</div>
</div>
<footer-component></footer-component>
<script src="home.js"></script>
</body>
</html>