-
Notifications
You must be signed in to change notification settings - Fork 0
/
website.html
45 lines (37 loc) · 1.32 KB
/
website.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
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<header>
<h1>Welcome to Our <b>69</b> Refreshment Stand</h1>
<p>Enjoy a variety of delicious 69 refreshments.</p>
</header>
<nav>
<ul>
<li><a href="#link">Menu</a></li>
<li><a href="#link">About Us</a></li>
<li><a href="#link">Contact</a></li>
</ul>
</nav>
<section id="menu">
<h2>Menu</h2>
<ul>
<li><span class="item-name">Egg Roll</span> - <span class="item-price">Rs.69/-</span></li>
<li><span class="item-name">Fried Rice</span> - <span class="item-price">Rs.169/-</span></li>
<li><span class="item-name">Family Biryani</span> - <span class="item-price">Rs.1169/-</span></li>
</ul>
</section>
<section id="about">
<h2>About Us</h2>
<p>We are all unemployed and thats why here comes a refreshment stand dedicated to serving high-quality sasta food to our customers.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>If you have any questions or inquiries, feel free to email us at <a href="69@gmail.com">info@example.com</a>and you can also call me I am always free.</p>
</section>
<footer>
<p>© 2023 69 Refreshment Stand</p>
</footer>
</body>
</html>