-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.27 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
<!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" type="text/css" href="style.css">
<title>Results summary component</title>
</head>
<body>
<main>
<article class="results-summary-component">
<header class="result-section" aria-labelledby="result">
<h1 id="result">Your Result</h1>
<div>
76
<span>of 100</span>
</div>
<h2>Great</h2>
<p>You scored higher than 65% of the people who have taken these tests.</p>
</header>
<section class="summary-section" aria-labelledby="summary">
<h3 id="summary">Summary</h3>
<ul id="summaryList" class="summary-list">
</ul>
<button type="button" class="continue-btn">Continue</button>
</section>
</article>
</main>
<footer class="attribution">
Coded by <a rel="noopener noreferrer" href="https://github.com/SartHak-0-Sach">Sarthak Sachdev</a>.
</footer>
<script type="text/javascript" src="./script.js" defer></script>
</body>
</html>