-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
136 lines (94 loc) · 4.14 KB
/
contact.html
File metadata and controls
136 lines (94 loc) · 4.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="contact.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
.gallery-container {
display: flex;
flex-wrap: nowrap; /* Prevents wrapping of images */
overflow-x: auto; /* Enables horizontal scrolling */
gap: 125px; /* Adds spacing between images */
padding: 15px;
margin-top: 20px;
}
.gallery-container::-webkit-scrollbar {
padding-top: 200px;
height: 8px;
}
.gallery-container::-webkit-scrollbar-thumb {
background-color: #ccc;
border-radius: 10px;
}
.gallery-container::-webkit-scrollbar-track {
background-color: #f5f5f5;
}
.gallery-item {
flex: 0 0 auto; /* Prevents items from shrinking or growing */
width: 300px; /* Set a fixed width for each image */
}
img {
width: 100%;
height: auto;
border-radius: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
transform: scale(1.25);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<header>
<div class="nav">
<img src="final1-removebg-preview.png" alt="final1-removebg-preview.png" id="logo">
<button id="home" onclick="location.href='Homepage.html'">Home</button>
<button id="login" onclick="location.href='loginpage.html'">Login</button>
<button id="dashboard" onclick="location.href='Dashboard.html'">Dashboard</button>
<button id="booking" onclick="location.href='booking.html'">Booking</button>
<button id="payment" onclick="location.href='payment.html'">Payment</button>
<button id="contact1">Contact</button>
</div>
</header>
<div id="mainbox1">
<p id="name1">Name :</p>
<input type="text" id="name" placeholder="Enter your name">
<p id="email1">Email :</p>
<input type="text" id="email" placeholder="Enter your email">
<p id="message1">Message :</p>
<textarea name="message" id="message" rows="10" cols="10"></textarea>
<input type="button" value="Submit" id="submit">
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d62224.11676330735!2d77.55992345688936!3d12.907252075843543!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae15b277a93807%3A0x88518f37b39dabd0!2sChrist%20University!5e0!3m2!1sen!2sin!4v1733236192882!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" id="map"></iframe>
<!-- -->
<footer>
<div class="foot-box">
<div id="contact">
<p>Contact Us</p>
<p>Email : [email protected]</p>
<p>Phone:12346789</p>
</div>
<div id="social">
<p>Follow us</p>
<div id="icons">
<i class="fa-brands fa-instagram" id="instagram"></i>
<i class="fa-brands fa-facebook" id="facebook"></i>
<i class="fa-brands fa-twitter" id="twitter"></i>
</div>
</div>
<div class="navigate">
<p>Navigate</p>
<p>Privacy policy</p>
<p>Terms and conditions</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/js/lightbox.min.js"></script>
</body>
</html>