-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
112 lines (104 loc) · 4.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Event Management Website</title>
<!-- Swiper-js-Link -->
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<!-- Font-cdn Link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<!-- CSS File Link -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Header section -->
<header class="header">
<a href="#" class="logo"><span>e</span>vento</a>
<nav class="navbar">
<a href="index.html">home</a>
<a href="service.html">service</a>
<a href="about.html">about</a>
<a href="gallery.html">gallery</a>
<a href="price.html">price</a>
<a href="review.html">review</a>
<a href="contact.html">contact</a>
<a href="ticket.htm">book tickets</a>
<a href="Login Form/login.html">login</a>
</nav>
</header>
<!-- Home section -->
<section class="home" id="home">
<div class="content">
<h3>its time to celebrate! the best <span> event organizers </span></h3>
<a href="https://wa.me/+917900780855" target="_blank" class="btn">contact us</a>
</div>
<div class="swiper-container home-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="Images/slide-1.jpg" alt="" />
</div>
<div class="swiper-slide">
<img src="Images/slide-3.jpg" alt="" />
</div>
<div class="swiper-slide">
<img src="Images/slide-4.jpg" alt="" />
</div>
<div class="swiper-slide">
<img src="Images/slide-5.jpg" alt="" />
</div>
<div class="swiper-slide">
<img src="Images/slide-6.jpg" alt="" />
</div>
</div>
</div>
</section>
<section class="footer">
<div class="box-container">
<div class="box">
<h3>branches</h3>
<a href="#"> <i class="fas fa-map-marker-alt"></i> BH-5 </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> Unimall </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> BH-6</a>
<a href="https://www.bing.com/search?pglt=41&q=lpu&cvid=2a14c89ed49d4e5eabe766b05cf0dbec&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIGCAEQRRg7MgYIAhBFGDsyBggDEEUYOzIGCAQQRRg8MgYIBRBFGDwyBggGEEUYPDIGCAcQRRhA0gEIMTA2MWowajGoAgCwAgA&FORM=ANNTA1&PC=HCTS"> <i class="fas fa-map-marker-alt"></i> lpu </a>
</div>
<div class="box">
<h3>quick links</h3>
<a href="#home"> <i class="fas fa-arrow-right"></i> home </a>
<a href="service.html"> <i class="fas fa-arrow-right"></i> service </a>
<a href="about.html"> <i class="fas fa-arrow-right"></i> about </a>
<a href="gallery.html"> <i class="fas fa-arrow-right"></i> gallery </a>
<a href="price.html"> <i class="fas fa-arrow-right"></i> price </a>
<a href="review.html"> <i class="fas fa-arrow-right"></i> reivew </a>
<a href="contact.html"> <i class="fas fa-arrow-right"></i> contact </a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#"> <i class="fas fa-phone"></i> 7900780855 </a>
<a href="#"> <i class="fas fa-phone"></i> 9896616881 </a>
<a href="#"> <i class="fas fa-envelope"></i> [email protected] </a>
<a href="#"> <i class="fas fa-envelope"></i> [email protected] </a>
<a href="#"> <i class="fas fa-envelope"></i> [email protected] </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> LPU </a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="https://www.facebook.com/gokul.ladepatil"> <i class="fab fa-facebook-f"></i> facebook </a>
<a href="https://twitter.com/gokullade89"> <i class="fab fa-twitter"></i> twitter </a>
<a href="https://www.instagram.com/p_a_t_i_l__g_o_k_u_l__89/?next=%2F"> <i class="fab fa-instagram"></i> instagram </a>
<a href="https://www.linkedin.com/in/gokul-lade-4618a6231/"> <i class="fab fa-linkedin"></i> linkedin </a>
</div>
</div>
<div class="credit"><span>Created By <a href="https://wa.me/+917900780855" target="_blank" class="btn1"> GL </a>| all rights reserved </div>
</section>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>