-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.62 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 1.62 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Results summary component</title>
</head>
<body>
<div class="cuadro-principal" >
<section class="cuadro-azul" >
<h3>Your Result</h3>
<div class="circle">
<h1>76</h1>
<p class="circle-paragraph">of 100</p>
</div>
<h2>Great</h2>
<p> You scored higher than 65% of the people who have taken these tests.</p>
</section>
<section class="cuadro-blanco">
<h3>Summary</h3>
<ul>
<li><div class= "box-images">
<img src="assets/images/icon-reaction.svg" alt="icon-reaction">Reaction<span>80 / 100</span>
</div></li>
<li>
<div class= "box-memory">
<img src="assets/images/icon-memory.svg" alt="icon-memory"> Memory <span> 92 / 100</span>
</div></li>
<li>
<div class= "box-verbal">
<img src= "assets/images/icon-verbal.svg" alt="icon-verbal">
<span class= "text-box-green">Verbal <span> 61 / 100</span> </span>
</div></li>
<li>
<div class= "box-visual">
<img src= "assets/images/icon-visual.svg" alt="icon-visual">
<span class="text-box-blue">Visual <span> 72 / 100</span></span>
</div></li>
</ul>
<button class="button-continue">Continue</button>
</section>
</div>
</body>
</html>