-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (75 loc) · 3.09 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!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="stylesheet" href="index.css">
<title>Landing Page</title>
</head>
<body>
<header>
<div class="left-links">
<p class="logo"><b>MEZE FRESH</b></p>
</div>
<ul>
<li><a href="">About</a></li>
<li><a href="">Services</a></li>
<li><a href="">Contact</a></li>
</ul>
</header>
<div class="main">
<div class="intro">
<div class="intro-text">
<h1>Meze fresh </h1>
<p class="sidekick-text">There is promotion for quasadilla everyday that start at 3PM up 11PM and don't miss taco tuesday</p>
<button class="sign-up">Order now</button>
</div>
<div class='logo'><img src='img/logo.jpg' width="200px" height="200px"/></div>
</div>
</div>
<div class="content">
<h2>ONLINE TAKE AWAY</h2>
<div class="cards">
<div class="card">
<h3>tacos</h3>
<div class="content-img"><img src="img/taco.jpg" alt="" width="144px" height="144px"></div>
<p class="kok">soft or hard flour with choice of tortilla</p>
</div>
<div class="card">
<h3>borrito</h3>
<div class="content-img"><img src="img/burrito.jpg" alt="" width="144px" height="144px"></div>
<p class="kok">your choice of topping wrap in tortilla</p>
</div>
<div class="card">
<h3>quesadilla</h3>
<div class="content-img"><img src="img/quesa.jpg" alt="" width="144px" height="144px"></div>
<p class="kok">large tortilla with cheese,pico de gallo with choice of protein</p>
</div>
<div class="card">
<h3>meze salad</h3>
<div class="content-img"><img src="img/mz.jpg" alt="" width="144px" height="144px"></div>
<p class="kok">served in a large crisp tortilla bowl</p>
</div>
</div>
</div>
<div class="quote">
<p> <b>A Moments of Delivered on Time.</b>
<b> We give you an eating experience that you'll never forget.
Your happy place is our happy place
</b>
</p>
</div>
<div class="sign-up-section">
<div class="text">
<p><b>Great View, great location and great Food</b></p>
<p class="small">Sign up for our product</p>
</div>
<button class="sign-up">Sign up</button>
</div>
</div>
<footer>
<p>Copyright <span>©</span>DavidIrankunda 2023</p>
</footer>
</body>
</html>