-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
41 lines (41 loc) · 1.29 KB
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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Result Card</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="card">
<div class="result-section">
<h1>76</h1>
<p>Great</p>
<p>You scored higher than 65% of the people who have taken these tests.</p>
</div>
<div class="summary-section">
<h2>Summary</h2>
<div class="summary-item">
<span class="label">Reaction</span>
<span class="score">80 / 100</span>
</div>
<div class="summary-item">
<span class="label">Memory</span>
<span class="score">92 / 100</span>
</div>
<div class="summary-item">
<span class="label">Verbal</span>
<span class="score">61 / 100</span>
</div>
<div class="summary-item">
<span class="label">Visual</span>
<span class="score">73 / 100</span>
</div>
<div class="continue-btn">
<button>Continue</button>
</div>
</div>
</div>
</body>
</html>