-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (67 loc) · 3.25 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
<!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" />
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<div class="logo">Restora</div>
<div class="links">
<ul>
<li><a href="#menu-section">Menu</a></li>
<li><a href="#offer-section">Offer</a></li>
<li><a href="#">Our Locations</a></li>
</ul>
</div>
</div>
<div class="intro">
<div class="intro-text">
<h1>Restora the Ultimate Culinary Haven</h1>
<p>Indulge in an extraordinary culinary experience where we seamlessly blend the rich flavors of traditional cuisine with a modern twist. At our establishment, we take pride in offering the finest quality ingredients and a fresh perspective on timeless dishes. Explore a world of delectable delights that honor tradition while embracing innovation. It's a feast for the senses you won't want to miss!</p>
<button>BOOK A TABLE</button>
</div>
<div >
<img class="intro-image" alt="cuisine" src="images/cooking.jpg">
</div>
</div>
<div class="menu" id="menu-section">
<h2>Beloved Culinary Creations</h2>
<div class="card-container">
<div class="cards">
<img alt="Kacchi" src="images/kacchi.jpg">
<p>We've reinvented the classic kacchi using time-honored techniques infused with a contemporary twist to tantalize your taste buds.</p>
</div>
<div class="cards">
<img alt="Kala Vuna" src="images/kala-vuna.jpg">
<p>Savor the rich blend of Kala Vuna and aromatic spices and herbs. It's not just meat; it's an elevated meat experience beyond the ordinary.</p>
</div>
<div class="cards">
<img alt="Shik Kabab" src="images/shik-kabab.jpg">
<p>Shik Kabab, a true delight for meat lovers, showcases a fusion of cooking techniques from around the world, unlocking its full culinary potential.</p>
</div>
<div class="cards">
<img alt="Pizza" src="images/pizza.jpg">
<p>We've crafted a health-conscious pizza and the best part is that it also boasts delicious flavors that will delight your taste buds.</p>
</div>
</div>
</div>
<div class="review">
<h2>"This place exceeded all expectations - the healthier pizza option was a delightful surprise, brimming with flavor. The service was top-notch, making it a memorable dining experience. I can't wait to return for more!"</h2>
<p>-Alexandra Williams</p>
</div>
<div class="offer" id="offer-section">
<div class="offer-container">
<div class="offer-text">
<h2>Get Free Home Delivery!</h2>
<p>We are celebrating our 25th anniversary. Let's spread the joy together!</p>
</div>
<button>ORDER NOW</button>
</div>
</div>
<div class="footer">Made with <span> ❤ </span> by <a href="https://github.com/jsnayem"> Nayem</a></div>
</body>
</html>