-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
340 lines (312 loc) · 8.86 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="style.css"> -->
<script
src="https://kit.fontawesome.com/d0372757ab.js"
crossorigin="anonymous"
></script>
<title>Museo AI</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Georgia, "Times New Roman", Times, serif;
}
@font-face {
font-family: "MyCustomFont";
src: url("HV Fitzgerald Italic.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
body {
background-color: #30a8c3;
color: white;
height: 100vh;
display: flex;
flex-direction: column;
background-image: url("new_home.svg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
/* ... (previous styles remain unchanged) ... */
/* New styles for the centered bottom image */
.centered-bottom-image {
position: fixed;
bottom: 20px; /* Adjust this value to control distance from bottom */
left: 50%;
transform: translateX(-50%);
z-index: 10; /* Ensure it's above other content but below the book now button */
}
.centered-bottom-image img {
max-width: 300px; /* Adjust this value to control the image size */
height: auto;
display: block;
}
/* Adjust the book-now-container to ensure it doesn't overlap with the new image */
.book-now-container {
bottom: 150px; /* Increased to make room for the new image */
}
/* Optional: Adjust other elements if needed */
.para {
padding-bottom: 200px; /* Increased to make room for the new image */
}
header {
padding: 20px 50px;
background-color: #00123a;
font-size: 18px;
font-weight: 400;
}
a {
text-decoration: none;
color: #f8f2be;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}
ul {
display: flex;
flex-direction: row;
list-style-type: none;
padding: 0;
margin: 0;
gap: 30px;
}
.left-items {
justify-content: space-around;
}
.left .items i {
margin-right: 10px;
}
.center-logo img {
height: 30px;
margin-left: -40px;
}
.auth-buttons {
display: flex;
align-items: right;
border: 2px solid #f8f2be;
border-radius: 30px;
padding: 0px;
background: #00123a;
}
.auth-buttons .login-btn,
.signup-btn {
padding: 10px 20px;
border-radius: 20px;
border: none;
text-decoration: none;
font-size: 0.9rem;
font-weight: bold;
cursor: pointer; /* Added cursor property */
}
.btn-login {
background-color: #002262;
color: #fff;
padding: 12px;
border: none;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
width: 100%;
margin-top: 10px;
cursor: pointer;
}
.btn-login:hover {
background-color: #0e45c2;
cursor: pointer;
}
.signup-btn {
background: #f8f2be;
color: black;
margin-left: -5px; /* Overlaps with the login button */
}
/* Fullscreen Section */
.hero {
display: flex;
padding-top: 90px; /* Centers content vertically */
left: 60px;
z-index: -2;
height: 100vh; /* Fullscreen height */
padding-left: 30px; /* Adds space between the text and the screen's left edge */
}
/* Text Styling */
.hero-text h1 {
color: #edeec9; /* Light text color */
font-size: 2.5rem; /* Adjust font size */
line-height: 1.2; /* Adjust spacing between lines */
font-weight: bold;
}
.hero-text h1 span {
display: block;
color: #ffd700; /* Optional highlight color for certain words */
}
.hero-text {
max-width: 48%; /* Limits width of the text block */
}
/* Container to hold the button */
.book-now-container {
position: absolute; /* Sticks it to the viewport */
bottom: 100px; /* Distance from the bottom of the screen */
right: 80px; /* Moves it to the right side */
}
.booky {
z-index: -2;
}
/* Button styling */
.book-now-btn {
background-color: #edeec9; /* Light background color */
color: #0a0a3b; /* Dark text color */
font-size: 2rem; /* Increased font size */
padding: 20px 50px 20px 100px; /* Increased padding for a larger button */
border: none;
border-radius: 50px; /* Rounded edges */
font-weight: bold;
cursor: pointer; /* Added cursor property */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
z-index: -2;
position: relative;
}
.book-now-btn:hover {
opacity: 0.9; /* Slight hover effect */
cursor: pointer;
}
.trans-btn {
position: absolute;
top: 5px; /* Adjust to overlap as needed */
left: 20px; /* Adjust to overlap as needed */
z-index: 2; /* Higher z-index to control stacking order */
background-color: transparent;
color: transparent;
width: 300px;
height: 70px;
border: none;
padding: 15px 30px;
border-radius: 5px;
cursor: pointer;
}
.para {
display: flex;
margin-top: 220px;
padding-top: 0;
padding-bottom: 0;
right: 50px;
position: absolute;
}
.para h3 {
font-size: 20px;
letter-spacing: 1px;
font-weight: 400;
z-index: -2;
color: #f8f2be;
font-family: "MyCustomFont";
}
.para span {
font-weight: 600;
}
.main-image {
display: flex;
justify-content: center;
margin-top: -500px;
height: 800px;
width: auto;
z-index: -1;
margin-left: 80px;
opacity: 1;
}
.book-now-container a {
color: #00123a;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #00123a;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 5px;
}
.dropdown-content a {
color: #f8f2be;
padding: 12px 16px;
text-decoration: none;
display: block;
}
dropdown-content a:hover {
background-color: #002a5a;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body>
<header>
<div class="navbar">
<ul class="left">
<li class="items dropdown">
<a href="#" id="languageDropdown"
><i class="fas fa-globe"></i>Language</a
>
<div class="dropdown-content" id="languageMenu">
<a href="#">English</a>
<a href="#">Español</a>
<a href="#">Français</a>
<a href="#">Deutsch</a>
</div>
</li>
<a href="#"><li class="items">About Us</li></a>
<a href="#"><li class="items">Contact Us</li></a>
</ul>
<div class="center-logo">
<a href="index.html"><img src="Vector 1506.svg" /></a>
</div>
<div class="auth-buttons">
<a href="login.html" class="login-btn">Login</a>
<a href="signup.html" class="signup-btn">Sign Up</a>
</div>
</div>
</header>
<!--Main-->
<section class="hero">
<div class="hero-text">
<h1>
BOOK <br />
YOUR MUSEUM EXPERIENCE <br />
SEAMLESSLY.
</h1>
</div>
</section>
<div class="para">
<h3>
Welcome to <span><i>Museo!</i></span> <br />
Skip the lines and book your museum tickets in a <br />
flash with museo! <span><i>Fast, easy, and available 24/7—</i></span
>just <br />
like magic. <br /><br />
Explore exhibits, grab your tickets, and enjoy your visit without the
wait.
</h3>
</div>
<div class="main-image">
<img src="SDCSDC.png" alt="" />
</div>
<div class="book-now-container">
<div class="booky">
<button class="book-now-btn">BOOK NOW</button>
</div>
<a href="chaty.html"><button class="trans-btn">BOOK NOW</button></a>
</div>
</body>
</html>