-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.02 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta 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>
<header>
<h1>LocalRepo</h1>
<p>This is my repo and this is my practice workspace for Github (or Git). I use this repo to test a lot of things in html and css.</p>
</header>
<section>
<h2>Feature 1</h2>
<p>This is our new feature, introducing</p>
<button type="submit" 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">Secret Button</button>
<div id="popup" anchor="popbtn" popover>Hello I'm a Popup</div>
</section>
<footer class="footer">
Open Source Website 2024. Made by @TechySC with Github, Git, and VS Code!
</footer>
</body>
</html>