mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-20 02:02:25 +03:00
40 lines
1.0 KiB
HTML
40 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>About Us</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>About Us</h1>
|
|
<nav>
|
|
<a href="index.html">Home</a>
|
|
<a href="services.html">Services</a>
|
|
<a href="contact.html">Contact</a>
|
|
<a href="login.html">Login</a>
|
|
<a href="signup.html">Sign Up</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section>
|
|
<h2>Our Story</h2>
|
|
<p>Description of your company's history and mission.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Our Team</h2>
|
|
<p>Information about key team members.</p>
|
|
</section>
|
|
|
|
<!-- Add more sections about your company as needed -->
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2024 Your Company</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|