-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
42 lines (42 loc) · 1.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About | Modern Website</title>
<link rel="stylesheet" href="/public/index.css" />
</head>
<body>
<header>
<div class="container">
<h1>ModernSite</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container">
<section class="hero">
<h2>About Us</h2>
<p>Learn more about our mission and values.</p>
</section>
<section class="content">
<h3>Our Story</h3>
<p>
Here you can add detailed information about your company, team, or
personal background.
</p>
</section>
</div>
</main>
<footer>
<div class="container">
<p>© 2024 ModernSite. All rights reserved.</p>
</div>
</footer>
</body>
</html>