-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (54 loc) · 2.02 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
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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<title>Frontend Mentor | Results summary component</title>
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>
<body>
<section class="caixa"> <!-- Início Caixa -->
<div class="todo">
<section class="conteudo"> <!-- Início Conteúdos -->
<h4>Your Result</h4>
<div class="circulo mb-2 p-5 rounded-circle">
<span>76</span><br><p>of 100</p>
</div>
<div class="great">
<span>Great</span>
<p>You scored higher than 65% of the people who have taken these tests.</p>
</div>
</section> <!-- Fim Conteúdos -->
<section class="sumario"> <!-- Início Sumário -->
<h4>Summary</h4>
<div class="reaction">
<img class="icon" alt="drawing of a lightning bolt" src="img/icon-reaction.svg">
Reaction
<p class="pontos valor">80 <span class="cem">/ 100</span></p>
</div>
<div class="memory">
<img class="icon" alt="drawing of a brain" src="img/icon-memory.svg">
Memory
<p class="pontos valor">92 <span class="cem">/ 100</span></p>
</div>
<div class="verbal">
<img class="icon" alt="drawing of a text balloon" src="img/icon-verbal.svg">
Verbal
<p class="pontos valor">61 <span class="cem">/ 100</span></p>
</div>
<div class="visual">
<img class="icon" alt="drawing of an eye" src="img/icon-visual.svg">
Visual
<p class="pontos valor">72 <span class="cem">/ 100</span></p>
</div>
<span>Continue</span>
</section> <!-- Fim Sumário -->
</div>
</section> <!-- Fim Caixa -->
</body>
</html>