-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (45 loc) · 1.98 KB
/
index.html
File metadata and controls
54 lines (45 loc) · 1.98 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Hanken+Grotesk&display=swap" rel="stylesheet">
<title>A Basic HTML5 Template</title>
<meta name="description" content="A simple HTML5 Template for new projects.">
<meta name="author" content="SitePoint">
<meta property="og:title" content="A Basic HTML5 Template">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.sitepoint.com/a-basic-html5-template/">
<meta property="og:description" content="A simple HTML5 Template for new projects.">
<meta property="og:image" content="image.png">
<link rel="icon" type="image/png" href="/app/assets/images/favicon-32x32.png" sizes="32x32">
<link rel="stylesheet" href="dist/style.css">
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="result-section">
<span class="label">Your Result</span>
<div class="score">
<span class="score-number">76</span>
<span class="max-score">of 100</span>
</div>
<div class="description">
<span class="quality">Great</span>
<span class="quality-details">
You scored higher than 65% of the people who have taken these tests.
</span>
</div>
</div>
<div class="summary">
<div class="header">Summary</div>
<div class="categories-container"></div>
<button class="continue" type="button">Continue</button>
</div>
</div>
</div>
<script src="dist/script.js" type="module"></script>
</body>
</html>