-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsivelandingpage.html.html
98 lines (92 loc) · 4.28 KB
/
responsivelandingpage.html.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">foodie restaurant</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<main>
<section id="home">
<h2>Welcome to Our Restaurant</h2>
<h2>Experience the best dining in town</h2>
<img src=" https://t3.ftcdn.net/jpg/03/24/73/92/360_F_324739203_keeq8udvv0P2h1MLYJ0GLSlTBagoXS48.jpg" alt="home">
<a href="#menu" class="btn">View Menu</a>
</section>
<section id="menu">
<div class="menu-item">
<img src="https://img.freepik.com/free-vector/organic-flat-rustic-restaurant-menu-template-with-photo_52683-62703.jpg" alt="menu">
<h2> Our Menu</h2>
</div>
<div class="menu-container">
<div class="menu-item">
<img src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_j80HrJ707lrP9e1tQw3KhxTGUIk4epOqOg&s" alt="pasta">
<h3>Pasta</h3>
<p>Delicious homemade pasta.</p>
</div>
<div class="menu-item">
<img src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT_P-FV5ovci7Nqrb4Qge_QDPn_glQc82qnkA&s" alt="steak">
<h3>Steak</h3>
<p>Juicy and tender steak.</p>
</div>
<div class="menu-item">
<img src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSXWjjeYWj3AenRm48b6cZT66R03LBRbYeTwQ&s" alt="salad">
<h3>Salad</h3>
<p>Fresh and healthy salads.</p>
</div>
<div class="menu-item">
<img src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYzwGI2wOSv1MYUXgg8VIw7sAMeNGTjQYQ3A&s" alt="burger">
<h3>burger</h3>
<p>Sizzle, Stack, and Savor burger!</p>
</div>
<div class="menu-item">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgLPAujEpp84E3neoNpOKps885exAmcqlyNA&s" alt="parattha">
<h3>parattha</h3>
<p>crispy and flaky paratthas.</p>
</div>
<div class="menu-item">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCZ6WHEu1iaQ3P0eqNqtCxtRwt4Yapw1yA9w&s" alt="juices">
<h3>juices</h3>
<p>fresh,fruity and tasty juices.</p>
</div>
</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>Our restaurant has been serving delicious food since 1990. We are committed to providing the best dining experience.
experience a great quality food along with a great taste. Providing a great service since 34 years. The customers trustworthy
restaurant. Experience taste with hygiene and good service.must come!</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<footer>
<p>© 2024 foodie restaurant. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>