-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
40 lines (40 loc) · 1.13 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Awesome Website</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="https://cdn-icons-png.freepik.com/512/1700/1700950.png" type="image/x-icon">
</head>
<body>
<header>
<h1>Welcome</h1>
<button id="theme-toggle">Toggle Dark Mode</button>
</header>
<nav>
<ul>
<li><a href="aim.html">Objectives</a></l1>
<li><a href="content.html">Home</a></li>
<li><a href="quiz.html">Quiz</a></li>
<li><a href="credits.html">Credits</a></li>
<li><a href="model.html">Simulation</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<main>
<section>
<h2>About Us</h2>
<p>
Welcome to our website. Explore our features, take a quiz, and learn
more about us.
</p>
</section>
</main>
<footer>
<p>© 2024 Group 3. All rights reserved.</p>
</footer>
<script src="./script.js">
</script>
</body>
</html>