-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntryPoint.html
More file actions
65 lines (62 loc) · 2.88 KB
/
EntryPoint.html
File metadata and controls
65 lines (62 loc) · 2.88 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
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dominic College 2023 Academic Pathways Planning</title>
<link rel="stylesheet" href="dom-pathways.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<!-- Header and Navbar -->
<header>
<div class="dom-header">
<img id="head01" src="Images/College_Logo_Header.png" alt="">
</div>
<div class="navbar">
<a class="nav-btn-txt" href="Welcome.html" target="w-frame">Home</a>
<div class="subnav">
<button class="subnav-btn nav-btn-txt">Welcome Page <i class="fa fa-caret-down"></i></button>
<div class="subnav-content">
<a href="Welcome.html#A1" target="w-frame">Principal's Address</a>
<a href="Welcome.html#A2" target="w-frame">Making Elective Choices</a>
<a href="Welcome.html#A3" target="w-frame">2023 Subject Handbook</a>
<a href="Welcome.html#A4" target="w-frame">Current Student Leaders' Choices</a>
<!-- <a href="Welcome.html#A7" target="w-frame">Microsoft Teams Meetings Schedule</a> -->
<a href="Welcome.html#A5" target="w-frame">How To Submit Web Preferences</a>
<a href="Welcome.html#A6" target="w-frame">GYC 2023 Course Handbook</a>
</div>
</div>
<!-- <div class="subnav">
<button class="subnav-btn nav-btn-txt">Year 8 Electives <i class="fa fa-caret-down"></i></button>
<div class="subnav-content">
<a href="Year_8_Electives.html" target="w-frame">How to Choose Year 8 Electives</a>
<a href="Technology_8.html" target="w-frame">Technology</a>
<a href="Creative_Arts_8.html" target="w-frame">Creative Arts</a>
<a href="LOTE_8.html" target="w-frame">LOTE</a>
</div>
</div> -->
<div class="subnav">
<button class="subnav-btn nav-btn-txt">Year 9/10 Electives <i class="fa fa-caret-down"></i></button>
<div class="subnav-content">
<a href="Year_9-10_Electives.html" target="w-frame">How to Choose Year 9/10 Electives</a>
<a href="English.html" target="w-frame">English</a>
<a href="Mathematics.html" target="w-frame">Mathematics</a>
<a href="Humanities.html" target="w-frame">Humanities</a>
<a href="Language_9-10.html" target="w-frame">Language</a>
<a href="Science.html" target="w-frame">Science</a>
<a href="Health_and_PE.html" target="w-frame">Health and PE</a>
<a href="Creative_Arts_9-10.html" target="w-frame">Creative Arts</a>
<a href="Technology_9-10.html" target="w-frame">Technology and Applied Studies</a>
<a href="VET.html" target="w-frame">VET Courses</a>
</div>
</div>
</div>
</header>
<!-- Content pages load into iframe here -->
<section>
<iframe id="ifrm" class="splash-frame" src="Welcome.html" name="w-frame" frameborder="0"></iframe>
</section>
</body>
</html>