-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (60 loc) · 2.84 KB
/
index.html
File metadata and controls
65 lines (60 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Essential Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- SEO Meta Tags -->
<title>Browser Overlays Demo - Multi-Page Navigation</title>
<meta name="description" content="A structured demo of browser overlays organized into categories with navigable pages. Built for GitHub Pages.">
<meta name="keywords" content="browser overlays, GitHub Pages, HTML navigation, folder structure">
<meta name="author" content="artechfuz3d">
<meta name="robots" content="index, follow">
<!-- Open Graph Meta Tags for Social Sharing -->
<meta property="og:title" content="Browser Overlays Demo">
<meta property="og:description" content="Navigate through categorized overlay pages.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://artechfuz3d.github.io/browser-overlays/">
<meta property="og:image" content="https://artechfuz3d.github.io/browser-overlays/og-image.jpg"> <!-- Add an image if desired -->
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Browser Overlays Demo">
<meta name="twitter:description" content="Structured navigation for overlay demos.">
<meta name="twitter:image" content="https://artechfuz3d.github.io/browser-overlays/og-image.jpg">
<!-- Favicon -->
<link rel="icon" href="favicon.ico" type="image/x-icon"> <!-- Add if desired -->
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Browser Overlays</h1>
<p>Navigate to categorized overlay pages below:</p>
<nav class="menu" aria-label="Category navigation menu">
<section class="category">
<h2>Screensavers</h2>
<ul>
<li><a href="screensaver/lego-01.html">LEGO Screensaver 01</a></li>
<li><a href="screensaver/lego-02.html">LEGO Screensaver 02</a></li>
</ul>
</section>
<section class="category">
<h2>Galleries</h2>
<ul>
<li><a href="gallery/images-01.html">Image Gallery 01</a></li>
<li><a href="gallery/images-02.html">Image Gallery 02</a></li>
</ul>
</section>
<section class="category">
<h2>Info Panels</h2>
<ul>
<li><a href="info/panel-01.html">Info Panel 01</a></li>
<li><a href="info/panel-02.html">Info Panel 02</a></li>
</ul>
</section>
</nav>
</div>
<script src="script.js" defer></script>
</body>
</html>