-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (91 loc) · 3.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Summary</title>
<link rel="stylesheet" href="styles/styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Hanken+Grotesk:wght@500;600;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div class="columns-container">
<div class="col-1">
<header class="result-header">Your Results</header>
<div class="circle">
<h1>76</h1>
<p>of 100</p>
</div>
<div class="text">
<h3>Great</h3>
<p>
You scored higher than 65% of<br />
the people who have taken<br />
these tests.
</p>
</div>
</div>
<div class="col-2">
<header class="summary">Summary</header>
<ul class="skills">
<li class="skill">
<div class="reaction">
<img
src="assets/images/icon-reaction.svg"
alt=""
/>
<h5>Reaction</h5>
</div>
<p><b>80</b><span> / 100</span></p>
</li>
<li class="skill">
<div class="memory">
<img
src="assets/images/icon-memory.svg"
alt=""
/>
<h5>Memory</h5>
</div>
<p><b>92</b><span> / 100</span></p>
</li>
<li class="skill">
<div class="verbal">
<img
src="assets/images/icon-verbal.svg"
alt=""
/>
<h5>Verbal</h5>
</div>
<p><b>61</b><span> / 100</span></p>
</li>
<li class="skill">
<div class="visual">
<img
src="assets/images/icon-visual.svg"
alt=""
/>
<h5>Visual</h5>
</div>
<p><b>72</b><span> / 100</span></p>
</li>
</ul>
<button class="btn">Continue</button>
</div>
</div>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io" target="_blank"
>Frontend Mentor</a
>. Coded by
<a
href="https://www.frontendmentor.io/profile/CodingGenius14"
target="_blank"
>Vikram Oberai</a
>
</div>
</div>
</body>
</html>