-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.42 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NovaTech Solutions | Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">NovaTech</div>
<nav>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about us.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>Building the Future, One Pixel at a Time.</h1>
<p>Your partner for innovative web design and development solutions.</p>
<button onclick="window.location.href='services.html'">View Our Services</button>
</section>
<section class="group-photo-section">
<h2>Meet the Minds Behind NovaTech</h2>
<img src="images/group_photo.jpg" alt="Group photo of the NovaTech Team" class="group-img">
</section>
</main>
<footer>
<p>© 2025 NovaTech Solutions. All rights reserved. | Powered by our team.</p>
</footer>
<script src="script.js"></script>
</body>
</html>