-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (55 loc) · 2.04 KB
/
Copy pathindex.html
File metadata and controls
60 lines (55 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Results-summary page</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<!-- THIS IS THE HEADER -->
</header>
<main>
<div class="card">
<div class="box">
<p class="text">Your Result</p>
<div class="circle">
<h1>76</h1>
<p>of 100</p>
</div>
<h2>Great</h2>
<p class="box-text">You scored higher than 65% of the people who have taken these tests.</p>
</div>
<div class="box-1">
<h3>Summary</h3>
<table>
<tr class="red">
<td><img src="img/icon-reaction.svg" alt="energy logo"> Reaction</td>
<td><span>80 </span><span class="grey"> / 100</span></td>
</tr>
<tr class="yellow">
<td><img src="img/icon-memory.svg" alt="brain-power logo"> Memory</td>
<td><span>92 </span><span class="grey"> / 100</span></td>
</tr>
<tr class="teal">
<td><img src="img/icon-verbal.svg" alt="chat bubble"> Verbal</td>
<td><span>61 </span><span class="grey"> / 100</span></td>
</tr>
<tr class="blue">
<td><img src="img/icon-visual.svg" alt="vison"> Visual</td>
<td><span>72 </span><span class="grey"> / 100</span></td>
</tr>
</table>
<div class="button">Continue</div>
</div>
</div>
</main>
<footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>
Coded by <a href="https://linktr.ee/Dev_Savion">Savion</a>
</div>
</footer>
</body>
</html>