-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (71 loc) · 1.84 KB
/
index.html
File metadata and controls
83 lines (71 loc) · 1.84 KB
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
<!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">
<title>Frontend Mentor | Results summary component</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--
Your Result
76
of 100
Great
You scored higher than 65% of the people who have taken these tests.
Summary
Reaction
80 / 100
Memory
92 / 100
Verbal
61 / 100
Visual
72 / 100
Continue -->
<div class="container">
<div class="card">
<div class="left_side">
<div class="left_side_content">
<h5>Your Result</h5>
<div class="score">
<div class="score_content">
<h1>76</h1>
<h6>of 100</h6>
</div>
</div>
<h2>Great</h2>
<p>You scored higher than 65% of the people who have taken these tests.</p>
</div>
</div>
<div class="right_side">
<div class="right_side_content">
<h3>Summary</h3>
<div class="scores">
<div class="reaction" id="score">
<p>Reaction</p>
<p>80/100</p>
</div>
<div class="memory" id="score">
<p>Memory</p>
<p>92/100</p>
</div>
<div class="verbal" id="score">
<p>Verbal</p>
<p>61/100</p>
</div>
<div class="visual" id="score">
<p>Visual</p>
<p>71/100</p>
</div>
</div>
<div class="button_container">
<button>Continue</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>