-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
55 lines (47 loc) · 1.49 KB
/
Copy pathmenu.html
File metadata and controls
55 lines (47 loc) · 1.49 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
<!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="Menu navigation for Schmidt's website">
<title>Menu</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>🗂️ Site Menu</h1>
<h2>Navigate to different sections of the website:</h2>
<div class="menu-grid">
<a href="index.html" class="menu-item">
<h3>🏠 Home</h3>
<p>Main page with my bio and daily stories</p>
</a>
<a href="hobby.html" class="menu-item">
<h3>😊 Hobbies</h3>
<p>My interests and favorite things</p>
</a>
<a href="galeria.html" class="menu-item">
<h3>📸 Gallery</h3>
<p>Photo collection with fun stories</p>
</a>
<a href="faq.html" class="menu-item">
<h3>❓ FAQ</h3>
<p>Frequently asked questions</p>
</a>
<a href="portfolio.html" class="menu-item">
<h3>💼 Projects</h3>
<p>My coding projects and work</p>
</a>
<a href="minigames.html" class="menu-item">
<h3>🎮 Minigames</h3>
<p>Fun games to play</p>
</a>
<a href="htmlexercises.html" class="menu-item">
<h3>🧮 Exercises</h3>
<p>Interactive coding exercises</p>
</a>
</div>
<footer>
<p>© 2026</p>
</footer>
</body>
</html>