-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.html
63 lines (63 loc) · 1.71 KB
/
student.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
<!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>Quiz - Student</title>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!-- header area start -->
<header class="header_area">
<a class="logo" href="index.html">
<img src="assets/images/logo.png" alt="logo" />
</a>
</header>
<!-- header area end -->
<div class="student_area">
<h1 class="student_title">Student Details</h1>
<ul class="student_items">
<li class="student_item">
<div class="student_wrap">
<img src="assets/images/student1.svg" alt="Alwin Akwada" />
<div class="student_content">
<h4>Alwin Akwada</h4>
<span>Student 1</span>
</div>
</div>
</li>
<li class="student_item">
<div class="student_wrap">
<img src="assets/images/student2.svg" alt="" />
<div class="student_content">
<h4>Shefin Mubarakku</h4>
<span>Student 2</span>
</div>
</div>
</li>
<li class="student_item">
<div class="student_wrap">
<img src="assets/images/student3.svg" alt="" />
<div class="student_content">
<h4>Ali Zahir</h4>
<span>Student 3</span>
</div>
</div>
</li>
<li class="student_item">
<div class="student_wrap">
<img src="assets/images/student4.svg" alt="" />
<div class="student_content">
<h4>Jacob Arul</h4>
<span>Student 4</span>
</div>
</div>
</li>
</ul>
<div class="text-center">
<a href="index.html" class="back_btn">Back To Quiz Page</a>
</div>
</div>
</body>
</html>