-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<title>Frontend Mentor | Results summary component</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<div class="result-summary-component grid-flow">
<div class="result-component grid-flow">
<h1 class="result-title component-title">Your Result</h1>
<div class="result-circle">
<p><span class="result-score">76</span>of 100</p>
</div>
<p class="result-text">
<span class="result-type" data-info="bold">Great</span>
You scored higher than 65% of the people who have taken these tests.
</p>
</div>
<div class="summary-component grid-flow">
<h2 class="summary-title component-title">Summary</h2>
<div class="summary-score grid-flow">
<div class="flex-group summary-items" data-item-type="accent-1">
<div class="flex-group summary-items-left">
<img src="images/icon-reaction.svg" alt="">
<h3 heading-type="accent-1">Reaction</h3>
</div>
<p><span data-info="strong-opacity">80</span> / 100</p>
</div>
<div class="flex-group summary-items" data-item-type="accent-2">
<div class="flex-group summary-items-left">
<img src="images/icon-memory.svg" alt="">
<h3 heading-type="accent-2">Memory</h3>
</div>
<p><span data-info="strong-opacity">92</span> / 100</p>
</div>
<div class="flex-group summary-items" data-item-type="accent-3">
<div class="flex-group summary-items-left">
<img src="images/icon-verbal.svg" alt="">
<h3 heading-type="accent-3">Verbal</h3>
</div>
<p><span data-info="strong-opacity">61</span> / 100</p>
</div>
<div class="flex-group summary-items" data-item-type=accent-4>
<div class="flex-group summary-items-left">
<img src="images/icon-visual.svg" alt="">
<h3 heading-type="accent-4">Visual</h3>
</div>
<p><span data-info="strong-opacity">72</span> / 100</p>
</div>
</div>
<button class="summary-btn" type="button">Continue</button>
</div>
</div>
</main>
</body>
</html>