-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (34 loc) · 1.44 KB
/
Copy pathabout.html
File metadata and controls
36 lines (34 loc) · 1.44 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
<!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="aboutstyle.css">
</head>
<body>
<nav class="navbar">
<h1 class="logo">LOGO</h1>
<ul class="nav-items">
<li class="nav-item"> <a href="project.html">HOME</a></li>
<li class="nav-item"><a href="about.html">ABOUT</a></li>
<li class="nav-item"><a href="work.html">WORK</a></li>
<li class="nav-item"><a href="pricing.html">PRICING</a></li>
</ul>
</nav>
<section class="about-section">
<div class="container">
<div class="about-content">
<h2 class="section-heading">About Us</h2>
<p>We are a team of passionate individuals committed to pushing the boundaries of creativity and innovation. Our mission is to empower businesses with cutting-edge solutions that drive growth and success.</p>
<p>At our core, we believe in collaboration, integrity, and excellence. We strive to build meaningful relationships with our clients and deliver exceptional results that exceed expectations.</p>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2024 All rights reserved</p>
</div>
</footer>
</body>
</html>