-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
49 lines (42 loc) · 1.23 KB
/
about.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!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="Your page description here">
<title>Page Title - Your Site Name</title>
<!-- Link to your CSS file - adjust the path as needed -->
<link rel="stylesheet" href="css/styles.css">
<!-- Add any additional meta tags, stylesheets, or scripts here -->
</head>
<body>
<!-- Navigation Menu -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="qa.html">Q&A</a></li>
<!-- Add more navigation items as needed -->
</ul>
</nav>
<!-- Main Content -->
<main>
<header>
<h1>Your Page Title</h1>
</header>
<section>
<h2>Section Title</h2>
<p>Your content goes here...</p>
</section>
<section>
<h2>Another Section</h2>
<p>More content here...</p>
</section>
</main>
<!-- Footer -->
<footer>
<p>© 2024 Your Name. All rights reserved.</p>
</footer>
<!-- Add any JavaScript files here -->
<script src="js/script.js"></script>
</body>
</html>