This repository has been archived by the owner on Dec 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
77 lines (73 loc) · 4.17 KB
/
header.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KRAI Website Header</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="manifest" href="manifest.json" />
</head>
<body>
<header id="header">
<ul>
<li class="dropdowns">
<a target="_parent" href="./index.html" style="padding: 4 0">
<img src="./img/krai-logo.svg" alt="Home">
</a>
</li>
<li class="dropdowns">
<a target="_parent" href="./information.html">School Information</a>
<ul class="dropdown">
<li><a target="_parent" href="./attendance.html">Attendance</a></li>
<li><a target="_parent" href="./food-nutrition.html">Food & Nutrition</a></li>
<li><a target="_parent" href="./clinic.html">Clinic</a></li>
<li><a target="_parent" href="./discipline.html">Discipline</a></li>
</ul>
</li>
<li class="dropdowns">
<a target="_parent" href="./programs.html">Programs</a>
<ul class="dropdown">
<li><a target="_parent" href="./cybersecurity.html">Applied Cybersecurity & Computer Science</a></li>
<li><a target="_parent" href="./automotive.html">Automotive Maintenance & Light Repair</a></li>
<li><a target="_parent" href="./biomedical.html">Biomedical Sciences</a></li>
<li><a target="_parent" href="./construction.html">Building Trades - Construction Technology</a></li>
<li><a target="_parent" href="./diesel.html">Diesel Maintenance Technology</a></li>
<li><a target="_parent" href="./digital-media.html">Digital Media/Multimedia</a></li>
<li><a target="_parent" href="./electricity.html">Electricity</a></li>
<li><a target="_parent" href="./engineering.html">Engineering & Applied Robotics</a></li>
<li><a target="_parent" href="./patient-care.html">Patient Care Technician</a></li>
<li><a target="_parent" href="./welding.html">Welding Technology Fundamentals</a></li>
</ul>
</li>
<li class="dropdowns">
<a>Academics</a>
<ul class="dropdown">
<li><a target="_parent" href="./advanced-placement.html">Advanced Placement</a></li>
<li><a target="_parent" href="./dual-enrollment.html">Dual Enrollment</a></li>
<li><a target="_parent" href="./tutoring.html">Tutoring and Academic Lunch</a></li>
</ul>
</li>
<li class="dropdowns">
<a>Assessments</a>
<ul class="dropdown">
<li><a target="_parent" href="./act-sat-information.html">ACT SAT Information</a></li>
<li><a target="_parent" href="./state-testing.html">State Testing</a></li>
<li><a target="_parent" href="./pert-testing.html">PERT Testing</a></li>
<li><a target="_parent" href="https://www.pasco.k12.fl.us/arm/">Pasco County ARM</a></li>
</ul>
</li>
<li class="dropdowns">
<a>Students</a>
<ul class="dropdown">
<li><a target="_parent" href="./college.html">College & Career</a></li>
<li><a target="_parent" href="./parking.html">Student Parking</a></li>
</ul>
</li>
<li><a target="_parent" href="https://outlook.office365.com/owa/calendar/[email protected]/c9915305f5c04226a1fa029d445ad9597027691012932680765/calendar.html"
target="_blank">Calendar</a></li>
<li><a target="_parent" href="./contact-us.html">Contact Us</a></li>
<li><a target="_parent" href="./abc.html">Academic Booster Club</a></li>
</ul>
</header>
</body>
</html>