forked from opensource-society/notesvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
211 lines (194 loc) · 6.76 KB
/
Copy pathheader.html
File metadata and controls
211 lines (194 loc) · 6.76 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!-- Header (HTML) -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="NotesVault - Organize your academic notes and PYQs semester-wise"
/>
<title>NotesVault - Header</title>
<!-- Favicon -->
<link rel="icon" href="assets/index/images/favicon.png" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<!-- CSS -->
<link rel="stylesheet" href="../styling/variables.css" />
<link rel="stylesheet" href="../styling/base.css" />
<link rel="stylesheet" href="../styling/header.css" />
</head>
<body>
<header class="navbar">
<div class="navbar-container">
<a href="/index.html" class="navbar-logo">
<img src="#" alt="" />
<span>NotesVault</span>
</a>
<nav class="navbar-nav">
<ul class="nav-links">
<li><a href="index.html" class="nav-link">Home</a></li>
<li>
<a href="overview.html" class="nav-link">Overview</a>
</li>
<li>
<a href="dashboard.html" class="nav-link">Dashboard</a>
</li>
<li>
<a href="features.html" class="nav-link">Features</a>
</li>
<li><a href="about.html" class="nav-link">About</a></li>
</ul>
</nav>
<div class="navbar-actions">
<!-- Theme Toggle Button -->
<button class="theme-toggle" aria-label="Toggle dark mode">
<span class="theme-icon sun">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</span>
<span class="theme-icon moon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"
></path>
</svg>
</span>
</button>
<div class="auth-buttons">
<button
onclick="location.href='login.html'"
class="btn btn-secondary"
>
Login
</button>
<button
onclick="location.href='signup.html'"
class="btn btn-primary"
>
Sign Up
</button>
</div>
</div>
<button class="menu-toggle" aria-label="Menu">
<span></span>
<span></span>
<span></span>
</button>
</div>
<!-- Mobile Menu -->
<nav class="mobile-nav">
<div class="mobile-actions">
<!-- Mobile Theme Toggle -->
<button
class="theme-toggle mobile-theme-toggle"
aria-label="Toggle dark mode"
>
<span class="theme-icon sun">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</span>
<span class="theme-icon moon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"
></path>
</svg>
</span>
</button>
</div>
<ul class="mobile-nav-links">
<li>
<a href="index.html" class="mobile-nav-link">Home</a>
</li>
<li>
<a href="overview.html" class="mobile-nav-link"
>Overview</a
>
</li>
<li>
<a href="dashboard.html" class="mobile-nav-link"
>Dashboard</a
>
</li>
<li>
<a href="features.html" class="mobile-nav-link"
>Features</a
>
</li>
<li>
<a href="about.html" class="mobile-nav-link">About</a>
</li>
</ul>
<div class="mobile-auth-buttons">
<a href="login.html" class="btn btn-secondary">Login</a>
<a href="signup.html" class="btn btn-primary">Sign Up</a>
</div>
</nav>
<div class="overlay"></div>
</header>
<!-- JavaScript -->
<script src="../scripts/script.js" defer></script>
</body>
</html>