-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (51 loc) · 1.59 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
<!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="styles.css">
<title>Sahoo Empire</title>
</head>
<body>
<header>
<h1>Sahoo Empire</h1>
<p>Welcome to the Empire of Excellence</p>
</header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="home">
<h2>Welcome to Sahoo Empire</h2>
<p>Experience excellence in every aspect of our services.</p>
</section>
<section id="about">
<h2>About Us</h2>
<p>Sahoo Empire is a leading company dedicated to providing top-notch services in various domains...</p>
</section>
<section id="services">
<h2>Our Services</h2>
<ul>
<li>Service 1</li>
<li>Service 2</li>
<li>Service 3</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Reach out to us for any inquiries or collaboration opportunities.</p>
<form id="contactForm">
<!-- Your contact form fields go here -->
<button type="submit">Submit</button>
</form>
</section>
<footer>
<p>© 2023 Sahoo Empire. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>