forked from interlinksite/interlinksite.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navnav.html
101 lines (90 loc) · 2.55 KB
/
navnav.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<style>
/* Base styles */
.nav {
display: flex;
align-items: center;
padding: 1rem;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}
.nav-link {
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
margin: 0 0.5rem;
font-weight: normal;
}
.dropdown {
position: relative;
display: inline-block;
font-weight: normal;
}
.dropbtn {
background: transparent;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
color: white;
font-family: inherit;
font-size: inherit;
margin: 0 0.5rem;
font-weight: normal;
}
.dropdown-content {
display: none;
position: absolute;
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
min-width: 160px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
z-index: 1;
font-weight: normal;
}
.dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
font-weight: normal;
}
.dropdown-content a:hover {
background: rgba(255, 255, 255, 0.1);
font-weight: normal;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body>
<nav class="nav">
<div class="nav-links">
<a href="https://interlinkcvhs.org" class="nav-link">Home</a>
<div class="dropdown">
<button class="dropbtn">Explore</button>
<div class="dropdown-content">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSf3g_pdB8w1AtyB97cScQcq4bBb55-VrEJysNWuIuluk3w8Yw/viewform?usp=sf_link">Request Form</a>
<a href="https://interlinkcvhs.org/tutoring">Peer Tutoring</a>
<a href="https://interlinkai.streamlit.app/?embed_options=dark_theme">𝙸𝚗𝚝𝚎𝚛𝚕𝚒𝚗𝚔 𝙰𝙸</a>
<a href="https://interlinkcvhs.org/simulations">Simulations</a>
<a href="https://interlinkcvhs.org/quizlets">Quizlets</a>
<a href="https://interlinkcvhs.org/productivity">Productivity Tools</a>
</div>
</div>
<a href="https://interlinkcvhs.org/subject-study" class="nav-link">Subject Study</a>
<a href="https://interlinkcvhs.org/qbank" class="nav-link">QBank</a>
<a href="https://interlinkcvhs.org/qotd" class="nav-link">QOTD</a>
<a href="https://interlinkcvhs.org/credits" class="nav-link">Credits</a>
</div>
</nav>
<script>
function toggleMenu() {
const navLinks = document.querySelector('.nav-links');
navLinks.classList.toggle('active');
}
</script>
</body>
</html>