-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (85 loc) · 4.48 KB
/
index.html
File metadata and controls
96 lines (85 loc) · 4.48 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
84
85
86
87
88
89
90
91
92
93
94
95
96
<!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>
<container class="box">
<header>
<dive class="header">
<h3>Your Result</h3>
<div class="circle">
<h1>76</h1>
<p>of 100</p>
</div>
<h2>Great</h2>
<p class="parragraph">You scored higher than 65% of the people who have taken these tests.</p>
</dive>
</header>
<main>
<section class="container">
<h4>Summary</h4>
<!--CONTAINER REACTION-->
<div class="reaction">
<div class="rt-container">
<svg class="icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#F55" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M10.833 8.333V2.5l-6.666 9.167h5V17.5l6.666-9.167h-5Z"/></svg>
<p class="r-title">Reaction</p>
</div>
<div class="rp-container">
<p class="r-p1"><b>80</b></p>
<p class="r-p2">/ 100</p>
</div>
</div>
<!-- END CONTAINER REACTION-->
<!--CONTAINER MEMORY-->
<div class="memory">
<div class="mt-container">
<svg class="icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#FFB21E" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M5.833 11.667a2.5 2.5 0 1 0 .834 4.858"/><path stroke="#FFB21E" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M3.553 13.004a3.333 3.333 0 0 1-.728-5.53m.025-.067a2.083 2.083 0 0 1 2.983-2.824m.199.054A2.083 2.083 0 1 1 10 3.75v12.917a1.667 1.667 0 0 1-3.333 0M10 5.833a2.5 2.5 0 0 0 2.5 2.5m1.667 3.334a2.5 2.5 0 1 1-.834 4.858"/><path stroke="#FFB21E" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M16.447 13.004a3.334 3.334 0 0 0 .728-5.53m-.025-.067a2.083 2.083 0 0 0-2.983-2.824M10 3.75a2.085 2.085 0 0 1 2.538-2.033 2.084 2.084 0 0 1 1.43 2.92m-.635 12.03a1.667 1.667 0 0 1-3.333 0"/></svg>
<p class="m-title">Memory</p>
</div>
<div class="mp-container">
<p class="m-p1"><b>92</b></p>
<p class="m-p2">/ 100</p>
</div>
</div>
<!--END CONTAINER MEMORY-->
<!--CONTAINER VERBAL-->
<div class="verbal">
<div class="vt-container">
<svg class="icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#00BB8F" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M7.5 10h5M10 18.333A8.333 8.333 0 1 0 1.667 10c0 1.518.406 2.942 1.115 4.167l-.699 3.75 3.75-.699A8.295 8.295 0 0 0 10 18.333Z"/></svg>
<p class="v-title">Verbal</p>
</div>
<div class="vp-container">
<p class="v-p1"><b>61</b> </p>
<p class="v-p2">/ 100</p>
</div>
</div>
<!--END CONTAINER VERBAL-->
<!--VISUAL CONTAINER-->
<div class="visual">
<div class="vi-container">
<svg class="icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#1125D6" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M10 11.667a1.667 1.667 0 1 0 0-3.334 1.667 1.667 0 0 0 0 3.334Z"/><path stroke="#1125D6" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M17.5 10c-1.574 2.492-4.402 5-7.5 5s-5.926-2.508-7.5-5C4.416 7.632 6.66 5 10 5s5.584 2.632 7.5 5Z"/></svg>
<p class="vi-title">Visual</p>
</div>
<div class="vi-p-container">
<p class="vi-p1"><b>72</b></p>
<p class="vi-p2">/ 100</p>
</div>
</div>
<!--END VISUAL CONTAINER-->
<a class="botton" href="#">Continue</a>
</section>
</main>
</container>
<footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
</footer>
</body>
</html>