-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (124 loc) · 4.38 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Updated Design</title>
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- Header -->
<header>
<!-- Social Media Bar -->
<div class="social-media-bar">
<p>Follow us on:</p>
<a href="https://facebook.com" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://twitter.com" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://instagram.com" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</div>
<!-- Navbar -->
<div class="navbar">
<div class="logo">
<img src="logo.png" alt="Logo">
</div>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</header>
<!-- About Us Section -->
<section id="about-us">
<h2>About Us</h2>
<div class="about-content">
<div class="about-card">
<img src="image1.jpg" alt="About Us Image 1">
<p>Information about us goes here.</p>
</div>
<div class="about-card">
<img src="image2.jpg" alt="About Us Image 2">
<p>More information about us goes here.</p>
</div>
</div>
</section>
<!-- Events Section -->
<section id="events">
<h2>Upcoming Events</h2>
<div class="event-card">
<h3>Event 1</h3>
<p>Details of the event go here.</p>
</div>
<div class="event-card">
<h3>Event 2</h3>
<p>Details of the event go here.</p>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery">
<h2>Gallery</h2>
<div class="gallery-grid">
<img src="gallery1.jpg" alt="Gallery Image 1">
<img src="gallery2.jpg" alt="Gallery Image 2">
<!-- Add more images as needed -->
</div>
</section>
<!-- Contact Us Section -->
<section id="contact" class="contact-section">
<div class="contact-container">
<!-- Contact Form -->
<div class="contact-form">
<h2>Get in touch</h2>
<p>We are here for you! How can we help?</p>
<form id="contact-form">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your Name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your Email" required>
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Your Message" required></textarea>
<button type="submit" class="submit-btn">Submit</button>
</form>
</div>
<!-- Illustration -->
<div class="contact-illustration">
<img src="envelope-illustration.png" alt="Envelope Illustration">
</div>
<!-- Contact Details -->
<div class="contact-info">
<ul>
<li>
<i class="fas fa-map-marker-alt"></i>
545 Mavis Island, IL 99191
</li>
<li>
<i class="fas fa-phone"></i>
+2034 4040 3030
</li>
<li>
<i class="fas fa-envelope"></i>
</li>
</ul>
</div>
</div>
<!-- Floating Social Icons -->
<div class="social-icons">
<a href="#" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="#" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="#" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
</section>
<script src="script.js"></script>
</body>
</html>