-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
98 lines (81 loc) · 3.12 KB
/
index.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
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
<html>
<head>
<link rel="stylesheet" href="mairn.css">
<?php
include "stylesheets.php";
?>
<script src = "JS/index.js"></script>
</head>
<?php
include "nav.php"
?>
<body>
<div id = "container">
<div id = "shipping">
<h1 class = "shipping">Free Shipping Now Available!</h1>
</div>
<h2 class = "heading">Featured Products</h2>
<div id = "product-row">
<?php
$dao = new Database();
$dao->printFeatured();
?>
</div>
<h2 class ="heading">Recommended For You</h2>
<div id ="product-row">
<?php
$dao = new Database();
$dao->printFeatured();
?>
</div>
<!-- Will be reimplemented in JQuery Assignment When Vehicles can be added
<h2 class = "heading">Fits your Vehicle</h2>
<div id = "product-row">
<div id ="product">
<img src = "images/air-filter.jpg" class = "responsive">
<div id = "desc"><a href = "">Subaru Outback Air Filter</a></div>
<div id = "price">$22.99</div>
<div id = "button">
<button class = "atc">Add to Cart</button>
</div>
</div>
<div id ="product">
<img src = "images/air-filter.jpg" class = "responsive">
<div id = "desc"><a href = "">Subaru Outback Air Filter</a></div>
<div id = "price">$22.99</div>
<div id = "button">
<button class = "atc">Add to Cart</button>
</div>
</div>
<div id ="product">
<img class = "responsive" src = "images/air-filter.jpg">
<div id = "desc"><a href = "">Subaru Outback Air Filter</a></div>
<div id = "price">$22.99</div>
<div id = "button">
<button class = "atc">Add to Cart</button>
</div>
</div>
<div id ="product">
<img class = "responsive" src = "images/air-filter.jpg">
<div id = "desc"><a href = "">Subaru Outback Air Filter</a></div>
<div id = "price">$22.99</div>
<div id = "button">
<button class = "atc">Add to Cart</button>
</div>
</div>
<div id ="product">
<img class = "responsive" src = "images/air-filter.jpg">
<div id = "desc"><a href = "">Subaru Outback Air Filter</a></div>
<div id = "price">$22.99</div>
<div id = "button">
<button class = "atc">Add to Cart</button>
</div>
</div> -->
</div>
</div>
</div>
</body>
</html>
<?php
include "footer.php"
?>