-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 3.86 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 3.86 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
<!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.0">
<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=Bree+Serif&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Yummy!</title>
</head>
<body>
<header>
<table>
<tr>
<td class="logo"><a href="#" target="_self"><img src="logo.png" alt="logo"></a></td>
<td class="heading"><h2>It's <strong>Yummy!!</strong></h2></td>
</tr>
</table>
</header>
<ul>
<li><a href="#" target="_self">Home</a></li>
<li><a href="#" target="_self">Recipies</a></li>
<li><a href="#" target="_self">Food</a></li>
</ul>
<main>
<section>
<h3 class="welcome">About us:</h3>
<p class="welcome">
Welcome to our delectable world of culinary delights! At <strong>Yummy</strong>, we take immense pride in curating the finest and most tantalizing flavors to satisfy your taste buds. Our commitment to quality, authenticity, and customer satisfaction is unwavering. Each dish is crafted with love, using only the freshest, locally-sourced ingredients to ensure an exceptional dining experience every time. With a team of passionate chefs and a diverse menu that caters to all preferences, we invite you to embark on a gastronomic journey like no other. Trust us to deliver mouthwatering creations that will leave you craving for more. Indulge in the magic of flavors, and let us exceed your expectations with every bite.
</p>
</section>
<section class="section2">
<h3>Taste it, it's <strong>Yummy!!</strong></h3>
<div class="alldishes">
<img src="samosa.jpeg" alt="samosa" class="dishes">
<img src="dosaxs.jpeg" alt="dosa" class="dishes">
<img src="dosa.jpeg" alt="dosa" class="dishes">
<img src="burger.jpeg" alt="burger" class="dishes">
<img src="Pizza.jpeg" alt="pizza" class="dishes">
<img src="donut.jpeg" alt="donut" class="dishes">
</div>
</section>
<section class="feedback">
<p class="suggestion">" At<strong>Yummy</strong>, we deeply care about your taste and satisfaction, which is why we constantly strive to enhance our offerings. Your feedback is invaluable to us, as it allows us to understand your preferences and make improvements accordingly. We welcome all suggestions, as they help us shape our products and services to better cater to your needs. Whether it's a new flavor suggestion, a tweak to an existing recipe, or an entirely new concept, we are eager to hear from you. Together, we can create an exceptional experience that delights your taste buds and ensures your continued enjoyment."</p>
<form action="sumbit" method="get">
<fieldset class="">
<legend>suggestions or feedback</legend>
<textarea name="feedback" placeholder="Write here!"></textarea>
</fieldset>
<input type="submit" value="send">
<input type="reset" value="clear">
</form>
</section>
</main>
<footer class="footer">
<a href="#" target="_self">FAQ</a>
<a href="#" target="_self">Contact Us</a>
<a href="#" target="_self">Terms of service</a>
<a href="#" target="_self">Privacy policy</a>
<a href="#" target="_self">Refund policy</a>
<a href="#" target="_self">©Yummy | 2023</a>
</footer>
</body>
</html>