-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
54 lines (53 loc) · 1.79 KB
/
about.html
File metadata and controls
54 lines (53 loc) · 1.79 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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus Technologies</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">Nexus Technologies</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="page-hero">
<h1>About Nexus Technologies</h1>
<p>Founded with a mission to make powerful technology accessible to every business.</p>
</section>
<section class="about-content">
<div class="about-text">
<h2>Our Story</h2>
<p>Nexus Technologies was born out of a simple idea — that great software should solve real problems. We are a team of passionate engineers, designers, and strategists building tools that matter.</p>
<p>From startups to enterprises, we partner with organisations at every stage of their digital journey.</p>
</div>
<div class="about-stats">
<div class="stat">
<h3>50+</h3>
<p>Projects Delivered</p>
</div>
<div class="stat">
<h3>12</h3>
<p>Team Members</p>
</div>
<div class="stat">
<h3>5</h3>
<p>Years of Excellence</p>
</div>
</div>
</section>
</main>
<body>
<footer>
<p>© 2025 Nexus Technologies. All rights reserved.</p>
</footer>
</body>
</html>