-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (86 loc) · 3.41 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Interactive Navigation Menu</title>
</head>
<body>
<div id="navbar">
<div class="container">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#contact">Contact</a>
</div>
</div>
<section id="home" class="content">
<div class="content-wrapper">
<div class="inner-content">
<div class="text">
<h2>Welcome to Our Website</h2>
<p>This is the home section. Feel free to explore!<br>
Welcome to XYZ Tech Solutions<br>
At XYZ Tech Solutions, we believe in the transformative power of technology. Our team is dedicated to providing innovative solutions that drive your business forward. From custom software development to web design and IT consulting, we're here to help you navigate the ever-evolving digital landscape.
</p>
</div>
<div class="image">
<!-- Image content here (optional) -->
</div>
</div>
</div>
</section>
<section id="about" class="content">
<div class="content-wrapper">
<div class="inner-content">
<div class="text">
<h2>About Us</h2>
<p>Learn more about our company and mission.</p>
<p>XYZ Tech Solutions is a leading technology company that started its journey in 2010. We are committed to delivering cutting-edge solutions to our clients, and our mission is to make technology accessible and beneficial for everyone.</p>
</div>
<div class="image">
<!-- Image content here (optional) -->
</div>
</div>
</div>
</section>
<section id="services" class="content">
<div class="content-wrapper">
<div class="inner-content">
<div class="text">
<h2>Our Services</h2>
<p>Discover the range of services we provide to our clients.</p>
<strong>Custom Software Development:</strong> Build software solutions that streamline your business processes.<br><strong>Web Design and Development:</strong> Create a stunning online presence with our expert web design and development services.<br><strong>IT Consulting:</strong> Receive strategic guidance to enhance your IT infrastructure and operations.
<strong>Data Analytics:</strong> Unlock the potential of your data with our data analytics services.
<p>Ready to take your business to the next level? Explore our website to learn more about our services and get in touch with us. Let's embark on a journey of innovation together!</p>
</div>
<div class="image">
<!-- Image content here (optional) -->
</div>
</div>
</div>
</section>
<section id="contact" class="content">
<div class="content-wrapper">
<div class="inner-content">
<div class="text">
<h2>Contact Us</h2>
<p>Get in touch with us. We'd love to hear from you!</p>
<address>
XYZ Tech Solutions<br>
123 Tech Street<br>
Cityville, Techland<br>
Email: [email protected]<br>
Phone: +1 (555) 123-4567
</address>
</div>
<div class="image">
<!-- Image content here (optional) -->
</div>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>