-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.html
More file actions
59 lines (53 loc) · 1.9 KB
/
Copy pathtemplate.html
File metadata and controls
59 lines (53 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>enter title here</title>
<link rel="icon" type="image/x-icon" href="logos/logo8.png"></head>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<body>
<!-- Navigation Bar -->
<nav class="navbar glass">
<div class="nav-logo" style="font-size:1.5em;font-weight:bold;letter-spacing:0.05em;">7Zeb</div>
<div class="nav-links">
<a href="index.html" class="active">Home</a>
<a href="/updates.html">Updates</a>
<a href="/blog.html">Blog</a>
<a href="/me.html">About Me</a>
<a href="/more.html">More</a>
<a href="https://BetaCity.github.io">BetaCity</a>
<button class="mode-toggle" aria-label="Toggle dark mode">🌙</button
</div>
</nav>
<main>
<div class="main-flex">
<div style="flex:2 1 0; min-width:0;">
<section class="glass" id="annoucment">
<h1>Major Announcements</h1>
<ul>
<li>put something here!</li>
</ul>
</section>
<!-- The amazing part -->
<section class="glass" id="home">
<h1 style="color:#1fe079">Enter text here</h1>
<p>idk add some text here if you want</p>
</section>
</div>
<aside class="infobox glass" id="infobox">
<!-- Content will be injected by infobox.js -->
</aside>
<script src="/infobox.js"></script>
</div>
</main>
<!-- Footer -->
<footer class="footer glass">
<p>© 2026 whatever you put here | Made with NewUI 5</p>
<br>
<p>Last modified on: April 1, 2026</p>
</footer>
<script src="newui.js"></script>
</body>
</html>