-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (137 loc) · 5.24 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<div class="container">
<div class="result-box flow-content">
<h1 class="section-title bold">Your Result</h1>
<div class="main_score flex">
<div class="flex">
<span class="highlighted-figure bold">76</span
><span class="overall-figure">of 100</span>
</div>
</div>
<h1 class="bold">Great</h1>
<p class="result-description">
You scored higher than 65% of the people who have taken these tests.
</p>
</div>
<div class="summary-box">
<div class="summary flow-content">
<h1 class="bold">Sumamry</h1>
<div class="accent--1 score-box flex">
<div class="scores-container flex">
<svg
class="summary-icon"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="none"
viewBox="0 0 20 20"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M10.833 8.333V2.5l-6.666 9.167h5V17.5l6.666-9.167h-5Z"
/>
</svg>
<p>Reaction</p>
</div>
<p class="summary-score"><span>80</span> / 100</p>
</div>
<div class="accent--2 score-box flex">
<div class="scores-container flex">
<svg
class="summary-icon"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="none"
viewBox="0 0 20 20"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M5.833 11.667a2.5 2.5 0 1 0 .834 4.858"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M3.553 13.004a3.333 3.333 0 0 1-.728-5.53m.025-.067a2.083 2.083 0 0 1 2.983-2.824m.199.054A2.083 2.083 0 1 1 10 3.75v12.917a1.667 1.667 0 0 1-3.333 0M10 5.833a2.5 2.5 0 0 0 2.5 2.5m1.667 3.334a2.5 2.5 0 1 1-.834 4.858"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M16.447 13.004a3.334 3.334 0 0 0 .728-5.53m-.025-.067a2.083 2.083 0 0 0-2.983-2.824M10 3.75a2.085 2.085 0 0 1 2.538-2.033 2.084 2.084 0 0 1 1.43 2.92m-.635 12.03a1.667 1.667 0 0 1-3.333 0"
/>
</svg>
<p>Memory</p>
</div>
<p class="summary-score"><span>92</span> / 100</p>
</div>
<div class="accent--3 score-box flex">
<div class="scores-container flex">
<svg
class="summary-icon"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="none"
viewBox="0 0 20 20"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M7.5 10h5M10 18.333A8.333 8.333 0 1 0 1.667 10c0 1.518.406 2.942 1.115 4.167l-.699 3.75 3.75-.699A8.295 8.295 0 0 0 10 18.333Z"
/>
</svg>
<p>Verbal</p>
</div>
<p class="summary-score"><span>61</span> / 100</p>
</div>
<div class="accent--4 score-box flex">
<div class="scores-container flex">
<svg
class="summary-icon"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="none"
viewBox="0 0 20 20"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M10 11.667a1.667 1.667 0 1 0 0-3.334 1.667 1.667 0 0 0 0 3.334Z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M17.5 10c-1.574 2.492-4.402 5-7.5 5s-5.926-2.508-7.5-5C4.416 7.632 6.66 5 10 5s5.584 2.632 7.5 5Z"
/>
</svg>
<p>Visual</p>
</div>
<p class="summary-score"><span>72</span> / 100</p>
</div>
<button class="button" type="submit">Continue</button>
</div>
</div>
</div>
</header>
</body>
</html>