-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (47 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png" />
<title>Frontend Mentor | Results summary component</title>
</head>
<body>
<main id="container">
<div id="main-card">
<h2>Your Result</h2>
<div id="circle">
<h1>76</h1>
<p>of 100</p>
</div>
<h1>Great</h1>
<p>You scored higher than 65% of the people who have taken these tests.</p>
</div>
<div id="sub-card">
<h2>Summary</h2>
<h3 id="orange">
<i id="o"><img src="./assets/images/icon-reaction.svg" alt="" /> Reaction</i> <span><i>80</i> / 100</span>
</h3>
<h3 id="yellow">
<i id="y"><img src="./assets/images/icon-memory.svg" alt="" /> Memory</i>
<span><i>92</i> / 100</span>
</h3>
<h3 id="green">
<i id="g"><img src="./assets/images/icon-verbal.svg" alt="" /> Verbal</i>
<span><i>61</i> / 100</span>
</h3>
<h3 id="blue">
<i id="b"><img src="./assets/images/icon-visual.svg" alt="" /> Visual</i>
<span><i>72</i> / 100</span>
</h3>
<div id="botao"> Continue </div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io/challenges/results-summary-component-CE_K6s0maV"
target="_blank">Frontend Mentor</a>
Coded by <a href="https://www.frontendmentor.io/profile/patejo-coder" target="_blank">Pátejo</a>
</div>
</main>
</body>
</html>