-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.html
55 lines (41 loc) · 1.72 KB
/
template.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
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adventure Path Template</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="./template.js" defer>
</script>
</head>
<body onLoad = "clearPath()">
<header>
<div class="wrapper">
<!--codes for the navigation bar-->
<nav>
<a href="index.html">Home</a><a class="active" href="template.html">Start Path</a><a href="about.html">About us + Contact</a>
</nav>
</div>
</header>
<div class="content-area">
<div class="wrapper">
<div class = "info-box">
<p>
<b>Welcome! Time to find your future!
</b>
<br><br>
Choose your next step on your path! After you choose your whole path, you will get some customized information!
</p>
</div>
<a href="cluster.html" onclick = "workForce()"><button class="button button1"">Enter the <br>Work Force</button></a>
<a href="university.html" onclick = "university()"><button class="button button2"">University</button></a>
<a href="vocational.html" onclick = "vocational()"><button class="button button3"">Vocational/<br>Trade School</button></a>
<a href="communityCollege.html" onclick = "community()"><button class="button button4"">Community<br>College</button></a>
</div>
<div class="clusters">
<a href ="#userCluster"><img class="clusterPics" src= ></a>
</div>
</body>
</html>