-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Restaurant</title>
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<div id="main_Container">
<h1>KHAN's Restaurant</h1>
<article class="box">
<img src="./img/cake.jpg" alt="Hasun's Image">
<p> Chocolate Cake A slice - $3.50</p>
<h2>Product Description</h2>
<p>The all time favourite rich chocolate cake made out of pure divine chocolate , the "loved by all" item of any bakery. And this once double in all.</p>
</article>
<article class="box">
<img src="./img/salad.jpeg" alt="Hasun's Image">
<p>Salad Plate - $2.25</p>
<h2>Product Description</h2>
<p>Chopped tomatoes, cucumbers, onions, and parsley combine with a drizzled dressing of lemon juice, olive oil, garlic, and mint leaves</p>
</article>
<article class="box">
<img src="./img/drink.jpg" alt="Hasun's Image">
<p>Strawberry Tarragon Smash - $2.50</p>
<h2>Product Description</h2>
<p>Mint sprig and lemon spiral.Muddle simple,lemon,mint, and strawberries. Added bourbon and dry shake. Tea strain to rocks glass, and crushed Ice and garnish.
</p>
</article>
</div>
</body>
</html>