-
Notifications
You must be signed in to change notification settings - Fork 5
/
p2_MeatAisle.php
72 lines (52 loc) · 1.98 KB
/
p2_MeatAisle.php
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
<?php include('./assets/php/header.php'); ?>
<main>
<!-- product list -->
<section>
<h1 class="section-title"><span>Our Fresh Meat</span></h1>
<!-- the files path will have to be changed -->
<div class="row">
<div class="col-4">
<div class="product">
<a href="./p3_Steak.php">
<img src="./images/Steak.jpg" alt="Steak">
<h4 class="aisle-text">AAA Angus Steak</h4>
<p class="aisle-text">$36.50/kg</p>
</a>
</div>
</div>
<div class="col-4">
<div class="product">
<a href="./p3_Chicken.php">
<img src="./images/Chicken.jpg" alt="Chicken">
<h4 class="aisle-text">Whole Chicken</h4>
<p class="aisle-text">$13.46/unit</p>
</a>
</div>
</div>
<div class="col-4">
<div class="product">
<a href="./p3_Ribs.php">
<img src="./images/Ribs.jpg" alt="Pork Ribs">
<h4 class="aisle-text">Pork Ribs</h4>
<p class="aisle-text">$7.49/pack</p>
</a>
</div>
</div>
</div>
</section>
<div class="page-btn">
<h2 class="span1">Page</h2>
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>𔾷 </span>
</div>
</div>
</main>
<!---- Footer --->
<div id="footer"></div>
<!-End Of Footer->
<script src="js/script.js"></script>
</body>
</html>