-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
53 lines (47 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="./assets/images/favicon-32x32.png" />
<link rel="stylesheet" href="./style.css">
<title>Results Summary</title>
</head>
<body>
<main class="container">
<div class="result-summary">
<div class="results | grid-flow" data-spacing="large">
<h1 class="section-title">Your Result</h1>
<p class="result-score">
<span></span>of 100
</p>
<div class="grid-flow">
<p class="result-rank">Great</p>
<p class="result-comment">You scored higher than 65% of the people who have taken these tests.
</p>
</div>
</div>
<div class="summary | grid-flow" data-spacing="large">
<h2 class="section-title">Summary</h2>
<div class="summary-items | grid-flow">
<!-- all summary item will be included here -->
</div>
<button class="button">Continue</button>
</div>
</div>
</main>
<template data-summary-item-template>
<div class="summary-item">
<div class="flex-group">
<img class="summary-item-picture" src="" alt="picture of topic">
<h3 class="summary-item-title"></h3>
</div>
<p class="summary-item-score">
<span></span> / 100
</p>
</div>
</template>
<script type="module" src="./main.js"></script>
</body>
</html>