-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.33 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
<!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="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Results summary component</title>
</head>
<body>
<div class="components">
<div class="results">
<h1 class="title">
Your Result
</h1>
<div class="averageScore">
<p class="score">
<span>76</span> of 100
</p>
<h3 class="remark">Great</h3>
</div>
<p class="message">
You scored higher than 65% of the people who have taken these tests.
</p>
</div>
<div class="summary">
<h1 class="title">Summary</h1>
<div class="data reaction">
<span>Reaction</span>
<span>80</span> / 100
</div>
<div class="data memory">
<span>Memory</span>
<span>92</span> / 100
</div>
<div class="data verbal">
<span>Verbal</span>
<span>61</span> / 100
</div>
<div class="data visual">
<span>Visual</span>
<span>72</span> / 100
</div>
<button class="button">Continue</button>
</div>
</div>
</body>
</html>