-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (81 loc) · 2.26 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
<!-- HTML5 doctype declaration -->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags for character set and viewport -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon link -->
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon.svg">
<!-- External stylesheet link -->
<link rel="stylesheet" href="style.css">
<!-- Page title -->
<title>Document</title>
</head>
<body>
<!-- Main content container -->
<main>
<!-- Section 1 - Your Result -->
<section class="part1">
<h1>Your Result</h1>
<div class="circle"><span>76</span>
<p> of 100</p>
</div>
<h2>Great</h2>
<p>You scored higher than 65% of <br>the people who have taken <br> these tests.</p>
</section>
<!-- Section 2 - Summary -->
<section class="part2">
<h1>Summary</h1>
<div class="container">
<!-- Subsection 1 - Reaction -->
<div class="first">
<div class="name">
<img src="./assets/images/icon-reaction.svg" alt="">
<p>Reaction</p>
</div>
<div class="score">
80
<span>/100</span>
</div>
</div>
<!-- Subsection 2 - Memory -->
<div class="sec">
<div class="name">
<img src="./assets/images/icon-memory.svg" alt="">
<p>Memory</p>
</div>
<div class="score">
92
<span>/100</span>
</div>
</div>
<!-- Subsection 3 - Verbal -->
<div class="third">
<div class="name">
<img src="./assets/images/icon-verbal.svg" alt="">
<p>Verbal</p>
</div>
<div class="score">
61
<span>/100</span>
</div>
</div>
<!-- Subsection 4 - Visual -->
<div class="fourth">
<div class="name">
<img src="./assets/images/icon-visual.svg" alt="">
<p>Visual</p>
</div>
<div class="score">
72
<span>/100</span>
</div>
</div>
</div>
<!-- Continue button -->
<div class="submit">Continue</div>
</section>
</main>
</body>
</html>