-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (77 loc) · 2.2 KB
/
index.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<title>Results summary component</title>
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<div class="card">
<div class="card-container">
<section class="result">
<h3 class="title">Your Results</h3>
<div class="circle">
<h1> 76</h1>
<p>of 100</p>
</div>
<b>Great</b>
<p class="info">You scored higher than 65% of the people who have taken these tests.</p>
</section>
<section class="summary">
<h3 class="title">Summary</h3>
<div class="rows">
<ul class="badge">
<li>
<div class="sub">
<img src="icon-reaction.svg" alt="icon">
<b class="bolt">Reaction</b>
</div>
<div class="sub">
<p><b>80</b>/100</p>
</div>
</li>
<li>
<div class="sub">
<img src="icon-memory.svg" alt="icon">
<b class="bolt">Memory</b>
</div>
<div>
<p><b>92</b>/100</p>
</div>
</li>
<li>
<div class="sub">
<img src="icon-verbal.svg" alt="icon">
<b class="bolt">Verbal</b>
</div>
<div>
<p><b>61</b>/100</p>
</div>
</li>
<li>
<div class="sub">
<img src="icon-visual.svg" alt="icon">
<b class="bolt">Visual</b>
</div>
<div>
<p><b>72</b>/100</p>
</div>
</li>
</ul>
</div>
<button class="btn">Continue</button>
</section>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Quantum</a>.
</div>
</body>
</html>