-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.1 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Static Site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<!-- Add more links here -->
</ul>
</nav>
<h1>My Static Site</h1>
</header>
<main>
<section class="hero">
<h2>Welcome!</h2>
<p>This is your simple multipage static site starter template.</p>
</section>
<section class="features">
<article>
<h3>HTML5</h3>
<p>Uses semantic tags for better accessibility and SEO.</p>
</article>
<article>
<h3>CSS3 Flexbox & Grid</h3>
<p>Responsive layout using modern CSS techniques.</p>
</article>
<article>
<h3>Multi-page</h3>
<p>Just copy and modify the template for new pages.</p>
</article>
</section>
</main>
<footer>
<p>© 2025 Your Name</p>
</footer>
</body>
</html>