-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
673 lines (614 loc) · 24.9 KB
/
Copy pathindex.html
File metadata and controls
673 lines (614 loc) · 24.9 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
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Antonio Restaurant</title>
<!-- Font Awesome CDN for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<div class="logo">
<img src="images/logo.png" alt="Antonio Logo">
</div>
<button class="menu-toggle">
<i class="fas fa-bars"></i>
</button>
<nav>
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./menu.html">Menu</a></li>
<li><a href="./reservation.html">Reservation</a></li>
<li><a href="./order.html">Order</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<div class="account" id="myAccountWrapper">
<div class="account-trigger">
<i class="fa-regular fa-user"></i>
<span>My Account</span>
</div>
<div class="account-dropdown" id="accountDropdown">
<div class="dropdown-form-box">
<h3 id="formTitle">Login</h3>
<form id="authForm">
<div class="form-group signup-only" id="nameGroup">
<input type="text" id="acc-name" class="form-control" placeholder="Full Name">
</div>
<div class="form-group">
<input type="email" id="acc-email" class="form-control" placeholder="Email Address" required>
</div>
<div class="form-group">
<input type="password" id="acc-password" class="form-control" placeholder="Password" required>
</div>
<button type="submit" class="submit-btn" id="authSubmitBtn">Login Now</button>
</form>
<div class="switch-form-text">
<span id="switchText">New user?</span>
<a href="#" id="toggleAuthMode">Create Account</a>
</div>
</div>
</div>
</div>
</header>
<!-- Cake Section -->
<section class="cake-section">
<div class="cake-content">
<div class="text animate-on-scroll">
<button class="watch-video"><i class="fa-solid fa-play"></i> Watch Video</button>
<h1>The Ideal <span>Prepared</span> Cake Regular!</h1>
<p>Indulge in the finest, handcrafted cakes made with love and premium ingredients.
Every bite is a perfect blend of rich flavors and elegant design, crafted to make your special moments unforgettable.</p>
<div class="buttons">
<button class="read-more">Read More</button>
<button class="order-now">Order Now</button>
</div>
</div>
<div class="image animate-on-scroll">
<img src="images/main.png" alt="Cake Image">
</div>
</div>
</section>
<!-- About Section -->
<section class="about-section">
<div class="about-content">
<div class="image animate-left">
<img src="./images/14.avif" alt="Antonio Restaurant Interior">
</div>
<div class="text animate-right">
<h2>About Antonio Restaurant</h2>
<p>Founded in 2005, Antonio Restaurant has been serving authentic Italian cuisine with a modern twist for nearly two decades. Our passion for food, family, and tradition is at the heart of everything we do.</p>
<div class="about-stats animate-stagger">
<div class="stat">
<h4>18+</h4>
<p>Years Experience</p>
</div>
<div class="stat">
<h4>50+</h4>
<p>Menu Items</p>
</div>
<div class="stat">
<h4>1000+</h4>
<p>Happy Customers</p>
</div>
</div>
</div>
</div>
</section>
<!-- Menu Section -->
<section class="menu-section">
<div class="section-title animate-on-scroll">
<h2>Our Delicious Menu</h2>
<p>Discover our carefully crafted dishes made with the finest ingredients and authentic Italian recipes</p>
</div>
<div class="menu-categories animate-on-scroll">
<button class="category-btn active">All</button>
<button class="category-btn">Cakes</button>
<button class="category-btn">Desserts</button>
<button class="category-btn">Pastries</button>
<button class="category-btn">Cupcakes</button>
<button class="category-btn">Drinks</button>
</div>
<div class="menu-items animate-stagger">
<!-- Menu Item 1 -->
<div class="menu-item">
<div class="menu-item-img">
<img src="./images/15.avif" alt="Mango Cake">
</div>
<div class="menu-item-content">
<div class="menu-item-header">
<h3 class="menu-item-title">Mango Cake</h3>
<span class="menu-item-price">$8.99</span>
</div>
<p class="menu-item-desc">Soft and fluffy sponge layered with rich cream and fresh mango flavor for a sweet tropical delight.</p>
<div class="menu-item-footer">
<div class="menu-item-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
<span>(4.5)</span>
</div>
<button class="add-to-cart">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button>
</div>
</div>
</div>
<!-- Menu Item 2 -->
<div class="menu-item">
<div class="menu-item-img">
<img src="./images/5.avif" alt="Chocolate Cake">
</div>
<div class="menu-item-content">
<div class="menu-item-header">
<h3 class="menu-item-title">Chocolate Cake</h3>
<span class="menu-item-price">$14.99</span>
</div>
<p class="menu-item-desc">Rich and decadent chocolate cake with a moist texture and intense cocoa flavor.</p>
<div class="menu-item-footer">
<div class="menu-item-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<span>(5.0)</span>
</div>
<button class="add-to-cart">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button>
</div>
</div>
</div>
<!-- Menu Item 3 -->
<div class="menu-item">
<div class="menu-item-img">
<img src="./images/16.avif" alt="Puddings">
</div>
<div class="menu-item-content">
<div class="menu-item-header">
<h3 class="menu-item-title">Puddings</h3>
<span class="menu-item-price">$6.99</span>
</div>
<p class="menu-item-desc">Creamy and delicious puddings made with the finest ingredients.</p>
<div class="menu-item-footer">
<div class="menu-item-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<span>(4.0)</span>
</div>
<button class="add-to-cart">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button>
</div>
</div>
</div>
<!-- Menu Item 4 -->
<div class="menu-item">
<div class="menu-item-img">
<img src="./images/17.avif" alt="Red Velvet Cupcake">
</div>
<div class="menu-item-content">
<div class="menu-item-header">
<h3 class="menu-item-title">Red Velvet Cupcake</h3>
<span class="menu-item-price">$4.99</span>
</div>
<p class="menu-item-desc">Moist red velvet cake topped with smooth cream cheese frosting for a rich and delightful taste.</p>
<div class="menu-item-footer">
<div class="menu-item-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
<span>(4.5)</span>
</div>
<button class="add-to-cart">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button>
</div>
</div>
</div>
<!-- Menu Item 5 -->
<div class="menu-item">
<div class="menu-item-img">
<img src="./images/18.avif" alt="Italian Lemonade">
</div>
<div class="menu-item-content">
<div class="menu-item-header">
<h3 class="menu-item-title">Italian Lemonade</h3>
<span class="menu-item-price">$4.99</span>
</div>
<p class="menu-item-desc">Freshly squeezed lemons with a hint of mint and natural sweeteners.</p>
<div class="menu-item-footer">
<div class="menu-item-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<span>(4.0)</span>
</div>
<button class="add-to-cart">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button>
</div>
</div>
</div>
<!-- Menu Item 6 -->
<div class="menu-item">
<div class="menu-item-img">
<img src="./images/19.avif" alt="Cannoli">
</div>
<div class="menu-item-content">
<div class="menu-item-header">
<h3 class="menu-item-title">Cannoli</h3>
<span class="menu-item-price">$6.99</span>
</div>
<p class="menu-item-desc">Crispy pastry shells filled with sweet ricotta cream and chocolate chips.</p>
<div class="menu-item-footer">
<div class="menu-item-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<span>(5.0)</span>
</div>
<button class="add-to-cart">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Reservation Section -->
<section class="reservation-section">
<div class="reservation-content">
<div class="reservation-text animate-left">
<h2>Make a Reservation</h2>
<p>Book your table at Antonio Restaurant and experience the finest Italian cuisine in a warm and welcoming atmosphere. Our team is dedicated to making your dining experience unforgettable.</p>
<div class="reservation-features animate-stagger">
<div class="reservation-feature">
<i class="fas fa-clock"></i>
<span>Open Monday - Sunday, 5 PM - 11 PM</span>
</div>
<div class="reservation-feature">
<i class="fas fa-users"></i>
<span>Groups of up to 12 people welcome</span>
</div>
<div class="reservation-feature">
<i class="fas fa-music"></i>
<span>Live music on Friday and Saturday evenings</span>
</div>
</div>
</div>
<div class="reservation-form animate-right">
<h3>Book Your Table</h3>
<form id="reservation-form">
<div class="form-row">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" class="form-control" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" class="form-control" placeholder="Your Email" required>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" class="form-control" placeholder="Your Phone" required>
</div>
<div class="form-group">
<label for="guests">Number of Guests</label>
<select id="guests" class="form-control" required>
<option value="" disabled selected>Select Guests</option>
<option value="1">1 Person</option>
<option value="2">2 People</option>
<option value="3">3 People</option>
<option value="4">4 People</option>
<option value="5">5 People</option>
<option value="6">6 People</option>
<option value="7">7 People</option>
<option value="8">8 People</option>
<option value="9">9+ People</option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="date">Date</label>
<input type="date" id="date" class="form-control" required>
</div>
<div class="form-group">
<label for="time">Time</label>
<select id="time" class="form-control" required>
<option value="" disabled selected>Select Time</option>
<option value="17:00">5:00 PM</option>
<option value="17:30">5:30 PM</option>
<option value="18:00">6:00 PM</option>
<option value="18:30">6:30 PM</option>
<option value="19:00">7:00 PM</option>
<option value="19:30">7:30 PM</option>
<option value="20:00">8:00 PM</option>
<option value="20:30">8:30 PM</option>
<option value="21:00">9:00 PM</option>
<option value="21:30">9:30 PM</option>
<option value="22:00">10:00 PM</option>
</select>
</div>
</div>
<div class="form-group">
<label for="special-requests">Special Requests</label>
<textarea id="special-requests" class="form-control" rows="3" placeholder="Any special requests or dietary restrictions?"></textarea>
</div>
<button type="submit" class="submit-btn">Reserve Now</button>
</form>
</div>
</div>
</section>
<!-- Order Section -->
<section class="order-section">
<div class="section-title animate-on-scroll">
<h2>Place Your Order</h2>
<p>Order your favorite dishes for pickup or delivery. Freshly prepared and ready when you are!</p>
</div>
<div class="order-content">
<div class="order-cart animate-left">
<h3>Your Order</h3>
<div class="cart-items">
<!-- Cart Item 1 -->
<div class="cart-item">
<div class="cart-item-img">
<img src="./images/4.avif" alt="Tiramisu Cake">
</div>
<div class="cart-item-details">
<div class="cart-item-title">Tiramisu Cake</div>
<div class="cart-item-price">$8.99</div>
</div>
<div class="cart-item-controls">
<button class="quantity-btn">-</button>
<span class="quantity-display">1</span>
<button class="quantity-btn">+</button>
<button class="remove-btn"><i class="fas fa-trash"></i></button>
</div>
</div>
<!-- Cart Item 2 -->
<div class="cart-item">
<div class="cart-item-img">
<img src="./images/5.avif" alt="Chocolate Cake">
</div>
<div class="cart-item-details">
<div class="cart-item-title">Chocolate Cake</div>
<div class="cart-item-price">$14.99</div>
</div>
<div class="cart-item-controls">
<button class="quantity-btn">-</button>
<span class="quantity-display">1</span>
<button class="quantity-btn">+</button>
<button class="remove-btn"><i class="fas fa-trash"></i></button>
</div>
</div>
<!-- Cart Item 3 -->
<div class="cart-item">
<div class="cart-item-img">
<img src="./images/18.avif" alt="Italian Lemonade">
</div>
<div class="cart-item-details">
<div class="cart-item-title">Italian Lemonade</div>
<div class="cart-item-price">$4.99</div>
</div>
<div class="cart-item-controls">
<button class="quantity-btn">-</button>
<span class="quantity-display">2</span>
<button class="quantity-btn">+</button>
<button class="remove-btn"><i class="fas fa-trash"></i></button>
</div>
</div>
</div>
<div class="cart-summary">
<div class="summary-row">
<span>Subtotal</span>
<span>$33.96</span>
</div>
<div class="summary-row">
<span>Delivery Fee</span>
<span>$3.99</span>
</div>
<div class="summary-row">
<span>Tax</span>
<span>$2.71</span>
</div>
<div class="summary-row total">
<span>Total</span>
<span>$40.66</span>
</div>
</div>
</div>
<div class="order-form animate-right">
<h3>Order Details</h3>
<div class="form-group">
<label for="order-name">Full Name</label>
<input type="text" id="order-name" class="form-control" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="order-phone">Phone Number</label>
<input type="tel" id="order-phone" class="form-control" placeholder="Your Phone Number" required>
</div>
<div class="form-group">
<label for="order-address">Delivery Address</label>
<input type="text" id="order-address" class="form-control" placeholder="Your Full Address" required>
</div>
<div class="form-group">
<label>Delivery Option</label>
<div class="delivery-options">
<div class="delivery-option selected">
<i class="fas fa-truck"></i>
<span>Delivery</span>
</div>
<div class="delivery-option">
<i class="fas fa-store"></i>
<span>Pickup</span>
</div>
</div>
</div>
<div class="form-group">
<label>Payment Method</label>
<div class="payment-methods">
<div class="payment-method selected">
<i class="fas fa-credit-card"></i>
<span>Credit Card</span>
</div>
</div>
</div>
<div class="order-actions">
<button class="continue-shopping">Continue Shopping</button>
<button class="checkout-btn">Checkout Now</button>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact-section">
<div class="section-title animate-on-scroll">
<h2>Contact Us</h2>
<p>We'd love to hear from you. Get in touch with us for any questions or feedback</p>
</div>
<div class="contact-content">
<div class="contact-info animate-left">
<h3>Get in Touch</h3>
<p>Have questions about our menu, want to host an event, or just want to say hello? We're here to help! Reach out to us using the information below or fill out the contact form.</p>
<div class="contact-details animate-stagger">
<div class="contact-detail">
<i class="fas fa-map-marker-alt"></i>
<div class="contact-detail-text">
<h4>Our Location</h4>
<p>123 Italian Street, Little Italy<br>New York, NY 10013</p>
</div>
</div>
<div class="contact-detail">
<i class="fas fa-phone"></i>
<div class="contact-detail-text">
<h4>Phone Number</h4>
<p>+1 (555) 123-4567</p>
</div>
</div>
<div class="contact-detail">
<i class="fas fa-envelope"></i>
<div class="contact-detail-text">
<h4>Email Address</h4>
<p>info@antonio-restaurant.com</p>
</div>
</div>
</div>
<div class="social-links animate-stagger">
<a href="#" class="social-link"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-link"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-link"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-link"><i class="fab fa-tripadvisor"></i></a>
</div>
</div>
<div class="contact-form animate-right">
<h3>Send Us a Message</h3>
<form id="contact-form">
<div class="form-group">
<label for="contact-name">Full Name</label>
<input type="text" id="contact-name" class="form-control" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="contact-email">Email Address</label>
<input type="email" id="contact-email" class="form-control" placeholder="Your Email" required>
</div>
<div class="form-group">
<label for="contact-subject">Subject</label>
<input type="text" id="contact-subject" class="form-control" placeholder="Subject of your message" required>
</div>
<div class="form-group">
<label for="contact-message">Message</label>
<textarea id="contact-message" class="form-control" rows="5" placeholder="Your message..." required></textarea>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="footer-bg"></div>
<div class="footer-content animate-stagger">
<div class="footer-column">
<div class="footer-logo">
<img src="images/logo.png" alt="Antonio Restaurant">
</div>
<p>Antonio Restaurant has been serving authentic Italian cuisine since 2005. We take pride in our family recipes and commitment to quality ingredients, bringing the taste of Italy to your table.</p>
<div class="social-links">
<a href="#" class="social-link"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-link"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-link"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-link"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
<div class="footer-column">
<h4>Quick Links</h4>
<ul class="footer-links">
<li><a href="#"><i class="fas fa-chevron-right"></i> Home</a></li>
<li><a href="#"><i class="fas fa-chevron-right"></i> About Us</a></li>
<li><a href="#"><i class="fas fa-chevron-right"></i> Our Menu</a></li>
<li><a href="#"><i class="fas fa-chevron-right"></i> Reservations</a></li>
<li><a href="#"><i class="fas fa-chevron-right"></i> Order Online</a></li>
<li><a href="#"><i class="fas fa-chevron-right"></i> Contact Us</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Contact Info</h4>
<ul class="contact-info">
<li>
<i class="fas fa-map-marker-alt"></i>
<span>123 Italian Street, Little Italy<br>New York, NY 10013</span>
</li>
<li>
<i class="fas fa-phone"></i>
<span>+1 (555) 123-4567</span>
</li>
<li>
<i class="fas fa-envelope"></i>
<span>info@antonio-restaurant.com</span>
</li>
</ul>
</div>
<div class="footer-column">
<h4>Newsletter</h4>
<p>Subscribe to our newsletter to receive updates on special offers, new menu items, and events.</p>
<div class="newsletter">
<form class="newsletter-form">
<input type="email" class="newsletter-input" placeholder="Your email address" required>
<button type="submit" class="newsletter-btn"><i class="fas fa-paper-plane"></i></button>
</form>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="footer-bottom-content">
<div>
<p>© 2026 Antonio Restaurant. All rights reserved.</p>
</div>
<div>
<p>Designed with <i class="fas fa-heart" style="color: #F2360A;"></i> for food lovers</p>
</div>
</div>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>