-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (122 loc) · 3.14 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Alliu Emmanuel">
<meta name="discription" content="This website contains the landing page, pricing list and contact page of the Magbite restaurant">
<link rel="icon" href="img/maxvibelogo.png">
<link rel="stylesheet" href="style.css">
<title>MAGBITES</title>
</head>
<header>
<body>
<h1>WELCOME TO MAGBITE WEBSITE</h1>
<br>
<nav aria-label="primary-navigation">
<ul>
<li>
<a href="#about us">About Magbites</a>
</li>
<li>
<a href="#our menu">Our Menu</a>
</li>
<li>
<a href="hours.html">Store hours</a></li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</nav>
</header>
<main>
<figcaption>
<img src="img/tacos_and_drink_400x267.png" alt="Magbite and a drink" title="Magbite and a Drink">
<br>
<caption>Magbite and a Drink</caption>
</figcaption>
<hr>
<h2 id="about us">
<p>About Us</p>
</h2>
<p>
Magbite was founded in the year 2023. Our shop was built out of the love of giving out best taste that is exceptonal to the public. These has been our greatest moltivation ever since and we are promising to always ever get better.
</p>
<h3>
Magma Bites
</h3>
<aside>
<details>
<summary>
when did Magbites first appear in Nigeria?</summary>
<p>Magbites first appeared in the year 2021 in Oyo State,Ibadan,Bodija.</p>
</details>
</aside>
<hr>
<h2 id="our menu">
<p>Our Menu
</p>
</h2>
<table>
<caption>OUR MAGBITES</caption>
<thead>
<th>
Tacos
</th>
<th>
Qty
</th>
<th>
Price
</th>
</thead>
<tbody>
<tr>
<td rowspan="4">Crunchy</td>
</tr>
<tr>
<td>1</td>
<td>$2.50</td>
</tr>
<tr>
<td>2</td>
<td>$4.00</td>
</tr>
<tr>
<td>3</td>
<td>$6.00</td>
</tr>
<tr>
<td rowspan="4">Soft</td>
</tr>
<tr>
<td>1</td>
<td>$2.00</td>
</tr>
<tr>
<td>2</td>
<td>$3.00</td>
</tr>
<tr>
<td>3</td>
<td>$4.00</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Chips & salsa $2.00</td>
</tr>
</tfoot>
</table>
<br>
<a href="#">Back To Top</a>
<br>
</main>
<footer>
<hr>
<p>
copyright © codewithmagma
</p>
</footer>
</body>
</html>