-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent-details.html
32 lines (32 loc) · 984 Bytes
/
student-details.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
<!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 Details</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">Page Editor - About Me</h1>
<div class="studnt_details_wrap">
<div class="studnt_details-img">
<img src="assets/images/student3.svg" alt="" />
</div>
<div class="student_content">
<h4>Name: Ali Zahir</h4>
<span><strong>Role:</strong> Student 3</span>
<span><strong>Tasks Completed:</strong> Quiz and Student Details pages. </span>
</div>
</div>
</div>
</body>
</html>