-
Notifications
You must be signed in to change notification settings - Fork 1
/
scorepage.html
48 lines (43 loc) · 1.31 KB
/
scorepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<link rel="stylesheet" href="CSS/index.css">
<title>Scorepage</title>
</head>
<body class="scbody">
<header class="schead">
<a href="#"><p>User1234</p></a>
</header>
<main class="scmain">
<div class="fstitle">
<p>Final Score</p>
</div>
<p class="tscore">1000</p>
<div class="reportq">
<p class="true">9 pertanyaan benar</p>
<p class="false">1 pertanyaan salah</p>
</div>
<div class="buttonfs">
<a href="#"><div>Review</div></a>
<a href="homepage.html"><div>Homepage</div></a>
</div>
<a href="#" class="feedback"><p>Feedback</p></a>
<div class="fslead">
<div class="title"> <p>Leaderboard</p> </div>
<div class="rank">
<p>user1 100000pts</p>
<p>user2 5000pts</p>
<p>user3 2500pts</p>
<p>user4 1500pts</p>
<p>user5 1000pts</p>
</div>
<a href="#"><p class="view">View More</p></a>
</div>
</main>
<footer>
</footer>
</body>
</html>