forked from Adissuu/Grocery-team1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
p2_fruitaisle.php
70 lines (52 loc) · 2 KB
/
p2_fruitaisle.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
<?php include('./assets/php/header.php'); ?>
<main>
<!-- product list -->
<section>
<h1 class="section-title"><span>Our Fresh Fruits</span></h1>
<!-- the files path will have to be changed -->
<div class="row">
<div class="col-4">
<div class="product">
<a href="./p3_honeycrisp.php">
<img src="./images/apple.jpg" alt="Honeycrisp Apple">
<h4 class="aisle-text">Honeycrisp Apples</h4>
<p class="aisle-text">$1.05/unit</p>
</a>
</div>
</div>
<div class="col-4">
<div class="product">
<a href="./p3_cucumber.php">
<img src="./images/cucumber.jpg" alt="Cucumber">
<h4 class="aisle-text">English Cucumbers</h4>
<p class="aisle-text">$5.00/pack</p>
</a>
</div>
</div>
<div class="col-4">
<div class="product">
<a href="./p3_banana.php">
<img src="./images/banana.jpg" alt="Banana">
<h4 class="aisle-text">Bananas</h4>
<p class="aisle-text">$0.30/unit</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>