-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 2.04 KB
/
index.html
File metadata and controls
73 lines (73 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Results Summary Component</title>
<link rel="stylesheet" href="style.css">
</head>
<!-- .card>#results>h2+#bubble>p+p^p+p^#summary>h2+#scoreDetails>#reaction+#memory+#verbal+#visial^button -->
<body>
<div class="card">
<div id="results">
<h2>Your Result</h2>
<div id="bubble">
<p>76</p>
<p>of 100</p>
</div>
<div id = "message">
<p>Great</p>
<p>You scored higher than 65% of the people who have taken these tests.</p>
</div>
</div>
<div id="summary">
<h2>Summary</h2>
<div id="scoreDetails">
<div id="reaction">
<div class="left">
<img src="icon-reaction.svg" alt="lightning bolt icon">
<h3>Reaction</h3>
</div>
<div class="right">
<p>80</p>
<p>/ 100</p>
</div>
</div>
<div id="memory">
<div class="left">
<img src="icon-memory.svg" alt="brain icon">
<h3>Memory</h3>
</div>
<div class="right">
<p>92</p>
<p>/ 100</p>
</div>
</div>
<div id="verbal">
<div class="left">
<img src="icon-verbal.svg" alt="speech bubble icon">
<h3>Verbal</h3>
</div>
<div class="right">
<p>61</p>
<p>/ 100</p>
</div>
</div>
<div id="visual">
<div class="left">
<img src="icon-visual.svg" alt="eye icon">
<h3>Visual</h3>
</div>
<div class="right">
<p>72</p>
<p>/ 100</p>
</div>
</div>
</div>
<div id = "buttonBackground">
<button>Continue</button>
</div>
</div>
</div>
</body>
</html>