-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (73 loc) · 2.4 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
<!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="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;600;700;800&display=swap"
rel="stylesheet"
/>
<title>Frontend Mentor | Results summary component</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<div class="results">
<h3 class="title">Your Result</h3>
<div class="circle">
<div class="circle__inner">
<div class="circle__inner__text">
<h2>76</h2>
<h3>of 100</h3>
</div>
</div>
</div>
<h2 class="subtitle">Great</h2>
<p class="score">
You scored higher than 65% of <br />
the people who have taken <br />
these tests.
</p>
</div>
<div class="summary">
<h3>Summary</h3>
<div class="container-results">
<div class="result reaction">
<div class="result__item">
<img src="assets/images/icon-reaction.svg" alt="">
<h4>Reaction</h4>
</div>
<h5>80 <span class="slash">/ 100</span></h5>
</div>
<div class="result memory">
<div class="result__item">
<img src="assets/images/icon-memory.svg" alt="">
<h4>Memory</h4>
</div>
<h5>92 <span class="slash">/ 100</span></h5>
</div>
<div class="result verbal">
<div class="result__item">
<img src="assets/images/icon-verbal.svg" alt="">
<h4>Verbal</h4>
</div>
<h5>61 <span class="slash">/ 100</span></h5>
</div>
<div class="result visual">
<div class="result__item">
<img src="assets/images/icon-visual.svg" alt="">
<h4>Visual</h4>
</div>
<h5>72 <span class="slash">/ 100</span></h5>
</div>
<div class="continue">
<button class="button">Continue</button>
</div>
</div>
</div>
</div>
</body>
</html>