-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathskeleton.html
52 lines (38 loc) · 1.07 KB
/
skeleton.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
<!-- This is template / skeleton for the basic page layout and formatting-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>What do you want to be when you grow up?</title>
<!--imports font: Poppins-->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="/quiz.js" defer>
</script>
</head>
<body>
<header>
<div class="wrapper">
<!--codes for the navigation bar-->
<nav>
<a href="index.html">Home</a><a href="template.html">Start Path</a><a href="about.html">About us + Contact</a>
</nav>
</div>
</header>
<!--Page content -->
<div class="content-area-simple">
<div class="wrapper">
<p>
<br>
<br>
<br>
<br>
<br>
</div>
</a>
</p>
</div>
</div>
</body>
</html>