forked from hshar/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (103 loc) · 3.24 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enhanced Apache Webpage</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 20px;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
nav {
margin-top: 10px;
}
nav a {
text-decoration: none;
color: #0066cc;
margin: 0 10px;
}
section {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 20px;
}
.gallery img {
width: 100%;
max-width: 300px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<header>
<h1>Enhanced Apache Webpage</h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
</nav>
<section id="home">
<h2>Welcome to our Enhanced Website!</h2>
<p>This webpage features a responsive design, a gallery section, and an interactive element. Explore the various sections and features.</p>
</section>
<section id="about">
<h2>About Us</h2>
<p>We are a creative and innovative team dedicated to providing high-quality web solutions.</p>
</section>
<section id="gallery">
<h2>Image Gallery</h2>
<div class="gallery">
<img src="images/github3.jpg" alt="Image 1">
<img src="images/ideaimage.jpg" alt="Image 2">
<img src="images/success.jpg" alt="Image 3">
<!-- Add more images as needed -->
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form action="/submit" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
<footer>
© 2023 Enhanced Apache Webpage. All rights reserved.
</footer>
<script>
// Interactive Feature Example
const welcomeMessage = document.querySelector("#home h2");
welcomeMessage.addEventListener("click", function() {
alert("Thanks for clicking! This is an interactive feature.");
});
</script>
</body>
</html>