-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
74 lines (74 loc) · 2.2 KB
/
Copy pathwork.html
File metadata and controls
74 lines (74 loc) · 2.2 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>score card</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<div class="card">
<div class="container">
<div class="left-side">
<h1 class="left-title">Your Result</h1>
<div class="score">
<h2>76</h2>
<h4>of 100</h4>
</div>
<h3>Great</h3>
<p>You scored higher than 65% of the people who have taken these tests</p>
</div>
<div class="right-side">
<h2>Summary</h2>
<ul class="score-list">
<li class="item reaction">
<div>
<img src="./zap.svg" alt="Reaction">
<h3 class="item-title">Reaction</h3>
</div>
<p class="item-score">
<span class="gained-score">80 </span>
<span class="total-score"> / 100</span>
</p>
</li>
<li class="item memory">
<div>
<img src="./brain.svg" alt="Memory">
<h3 class="item-title">Memory</h3>
</div>
<p class="item-score">
<span class="gained-score">92 </span>
<span class="total-score"> / 100</span>
</p>
</li>
<li class="item verbal">
<div>
<img src="./message-circle-more.svg" alt="Verbal">
<h3 class="item-title">Verbal</h3>
</div>
<p class="item-score">
<span class="gained-score">61 </span>
<span class="total-score"> / 100</span>
</p>
</li>
<li class="item visual">
<div>
<img src="./eye.svg" alt="Visual">
<h3 class="item-title">Visual</h3>
</div>
<p class="item-score">
<span class="gained-score">73 </span>
<span class="total-score"> / 100</span>
</p>
</li>
</ul>
<button class="card-btn">
Continue
</button>
</div>
</div>
</div>
</main>
</body>
</html>