-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Educational App</title>
</head>
<body>
<header>
<h1>Educational App</h1>
</header>
<main>
<section class="user-profile">
<h2>User Profile</h2>
<img src="user-avatar.png" alt="User Avatar">
<p>Username: Milad</p>
<p>Level: 5</p>
</section>
<section class="study-materials">
<h2>Study Materials</h2>
<ul>
<li><a href="#">Introduction to Math</a></li>
<li><a href="#">Science Basics</a></li>
<li><a href="#">History Lessons</a></li>
</ul>
</section>
<section class="quizzes">
<h2>Interactive Quizzes</h2>
<button id="start-quiz">Start Quiz</button>
</section>
</main>
<footer>
<p>© 2023 Educational App</p>
</footer>
<script src="script.js"></script>
</body>
</html>