-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (87 loc) · 4.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="logo">
The Culinaire
</div>
<ul class="header-links">
<li><a href="#">Menu</a></li>
<li><a href="#">Reservations</a></li>
<li><a href="#">About Us</a></li>
</ul>
</div>
<!-- HERO SECTION-->
<div class="hero">
<div class="hero-text-container">
<div class="hero-text">
<div class="hero-main-text">
Indulge in Elegance, Savor the Extraordinary
</div>
<div class="hero-secondary-text">
Experience a culinary journey like no other, where every dish is a masterpiece and every moment redefines luxury. Indulge in the exclusivity of fine dining reserve your place at the table of perfection today.
</div>
<div class="hero-button-container">
<button class="hero-button">Reserve Your Table</button>
</div>
</div>
</div>
<div class="hero-image">
<img class="hero-img" src="./images/hero-image.jpg" alt="Photo by Ron Lach : https://www.pexels.com/photo/a-people-eating-in-the-restaurant-8921577/">
</div>
</div>
<!--INFO SECTION-->
<div class="info">
<div class="info-main-text">Explore the Details</div>
<div class="info-image">
<div class="info-img">
<img class="info-images" src="./images/info-img-1.jpg" alt="image">
<div class="info-text">Start your day with a touch of luxury our breakfast creations are crafted to delight your senses.</div>
</div>
<div class="info-img">
<img class="info-images" src="./images/info-img-2.jpg" alt="image">
<div class="info-text">Experience fine dining in an elegant ambiance, where every detail is designed for perfection.</div>
</div>
<div class="info-img">
<img class="info-images" src="./images/info-img-3.jpg" alt="image">
<div class="info-text">Savor the finest wines paired with gourmet dishes, curated for the ultimate indulgence.</div>
</div>
<div class="info-img">
<img class="info-images" src="./images/info-img-4.jpg" alt="image">
<div class="info-text">Immerse yourself in a romantic evening with exquisite cuisine and a captivating atmosphere.</div>
</div>
</div>
</div>
<!--QUOTE SECTION-->
<DIV class="quote-container">
<div class="quote-heading">
Testimonials of Excellence
</div>
<div class="quote">A high-end experience that sets a new standard for luxury dining. I felt like I was part of something truly exclusive.
</div>
<div class="guest-name">Sophia W.</div>
</DIV>
<!--CTA SECTION-->
<div class="cta">
<div class="cta-container">
<div class="cta-text">Book Your Table Now – Indulge in Luxury</div>
<div class="cta-button-container">
<button class="cta-button">Book Your Table</button>
</div>
</div>
</div>
<!--FOOTER-->
<div class="footer">
All rights reserved © 2025
</div>
</body>
</html>