-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (66 loc) · 2.06 KB
/
index.html
File metadata and controls
69 lines (66 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>LocalRepo Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- <meta name="color-scheme" content="dark" /> -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- New Navbar -->
<nav class="navbar">
<div class="navbar-brand">
<a href="index.html" class="navbar-logo">LocalRepo</a>
</div>
<input type="checkbox" id="navbar-toggle-checkbox" class="navbar-toggle-checkbox" />
<label for="navbar-toggle-checkbox" class="navbar-toggle">☰</label>
<ul class="navbar-nav">
<li class="nav-item">
<a href="index.html" class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a href="Experiments.html" class="nav-link">Experiments</a>
</li>
<li class="nav-item">
<a href="lab.html" class="nav-link">Test Lab</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">About</a>
</li>
</ul>
<!-- Search bar in navbar -->
<div class="navbar-search">
<input
type="text"
class="navbar-search-input"
placeholder="Search LocalRepo..."
aria-label="Search" />
<button type="button" class="navbar-search-button">
<span class="search-icon">🔍</span>
</button>
</div>
</nav>
<div class="container">
<div class="acrylic-container">
<header>
<p>Hello Everybody! This is LocalRepo's Home Page.</p>
</header>
<section>
<h3>Feature 1</h3>
<p>This is our new feature, introducing</p>
<button type="button" class="f1">Feature</button>
</section>
<!-- Popover code Section: -->
<section>
<h3>Feature 2</h3>
<p>Click the button to see the surprise!</p>
<button id="popbtn" popovertarget="popup" type="button">Secret Button</button>
<div id="popup" popover="manual" defaultopen="false">I am the surprise!</div>
</section>
</div>
</div>
<footer>Open Source Website 2025. Made by @TechySC with VS Code!</footer>
</body>
</html>