-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
67 lines (59 loc) · 2.29 KB
/
gallery.html
File metadata and controls
67 lines (59 loc) · 2.29 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
67
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>links</title>
</head>
<body>
<div class="container">
<div class="header">
<img src="images/food image 2.jpg" alt="">
<h3>Delicia Tasty<br>Foods and Bakery</h3>
</div>
<div class="nav">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="food_table.html">Food Table</a></li>
<li><a href="videos.html">Video</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="order_form.html">Order</a></li>
</ul>
</nav>
</div>
<h3 class="page_heading">Food Table</h3>
<section class="foodtable">
<table>
<tr>
<th>Combo + Solo Drinks</th>
<th>Fried Rice Combo </th>
<th>Fried Rice + Sea Food</th>
</tr>
<tr>
<td><img src="images/mama-cass-combo-noble-rice.jpg" alt=""></td>
<td><img src="images/Fried rice combo.jpg"></td>
<td><img src="images/food image 2.jpg"></td>
</tr>
<tr>
<th>Moi Moi Combo</th>
<th>Swallow Combo </th>
<th>Mama Cas Combo</th>
</tr>
<tr>
<td><img src="images/mama-cass-combo-moi-moi-1536x1536.jpg" alt=""></td>
<td><img src="images/swallow combo.jpg"></td>
<td><img src="images/mama-cass-combo-noble-rice.jpg"></td>
</tr>
</table>
</section>
<!-- <div class="aud">
<audio controls>
<source src="audio/1 Ja'far tafsir..mp3" type="audio/mp3">
<p>Your browser doesnt support audio</p>
</audio> -->
</div>
</div>
</body>
</html>