-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (49 loc) · 1.36 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
<!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="stylesheet" href="./design.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<title>Frontend Mentor | Results summary component</title>
</head>
<body>
<div class="container">
<div class="item1 ">
<h3>Your Result</h3>
<div class="circle">
<h1>76</h1>
<h6>of 100</h6>
</div>
<section class="section1">
<h2>Great</h2>
</section>
<section class="section2">
<p>You scored higher than 65% of <br>
the people who have taken <br>these tests
</p>
</section>
</div>
<div class="item2">
<div class="summary">
<h3>Summary</h3>
</div>
<div class="result-container">
<div class="reaction">Reaction
<span>80</span>
</div>
<div class="memory">Memory
<span>92</span>
</div>
<div class="verbal">Verbal
<span>61</span>
</div>
<div class="visual">Visual
<span>72</span>
</div>
<button>Continue</button>
</div>
</div>
</div>
</body>
</html>