-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
101 lines (93 loc) · 4.32 KB
/
contact.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
<!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>
</nav>
</header>
<section class="contact" id="contact">
<h1 class="heading6"> <span>contact</span> us </h1>
<form action="" onsubmit="return(validate());">
<div class="inputBox">
<input type="text" placeholder="name" id="t1">
<input type="email" placeholder="email" id="t2">
</div>
<div class="inputBox">
<input type="text" placeholder="number" id="t5">
<input type="text" placeholder="subject" >
</div>
<div>
<textarea name="" placeholder="your message" id="t7" cols="30" rows="10"></textarea>
</div>
<input type="submit" value="send message" class="btn">
</form>
</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="index.html"> <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/utkarsh.utkarsh"> <i class="fab fa-facebook-f"></i> facebook </a>
<a href="https://twitter.com/utkarsh"> <i class="fab fa-twitter"></i> twitter </a>
<a href="https://www.instagram.com/kshitij589/?next=%2F"> <i class="fab fa-instagram"></i> instagram </a>
<a href="https://www.linkedin.com/in/yajat589/"> <i class="fab fa-linkedin"></i> linkedin </a>
</div>
</div>
<div class="credit"><span>Created By <a href="https://wa.me/7900780855" target="_blank" class="btn1"> GL </a>| all rights reserved </div>
</section>
<script src="script.js"></script>
</body>
</html>