-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.php
More file actions
96 lines (89 loc) · 3.34 KB
/
products.php
File metadata and controls
96 lines (89 loc) · 3.34 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Sen:wght@800&display=swap" rel="stylesheet">
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
<script src="js/google-map.js"></script>
<style media="screen">
<?php include'style.css';?>
</style>
<title>About us</title>
</head>
<body>
<?php include 'header.php';?>
<br>
<br>
<br>
<br>
<div class="hero-image" style="background-image: url('images/banner.jpg'); padding-top: 90px; padding-bottom: 90px">
<div class="banner">
<div class="container ">
<div class="row no-gutters slider-text align-items-center justify-content-center">
<div class="col-md-9 text-center">
<h1 class="mb-0 bread">Our Products</h1>
<p class="breadcrumbs"><span class="mr-2"><a href="home.php">Home</a></span> <span>About</span></p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<br>
<h3 class="lp">Choose<b> Wide Range of </b>Products</h3>
<br>
<div class="row">
<div class="col-sm-3">
<div class="card mb-3">
<img style="height: 100%; width: 100%; display: block;" src="images/shoes.jpg" alt="Shoes">
<div class="card-body">
<h5 class="card-text"><b>Smart Footwear</b></h5>
<p class="card-text">Punctuate your weekday look with classic</p>
<a href="shoes.php" style="color: black;"><small><u>Shop Now</u></small></a>
</div>
</div>
</div>
<! 2nd category>
<div class="col-sm-3">
<div class="card mb-3">
<img style="height: 100%; width: 100%; display: block;" src="images/raceday.jpg" alt="Shoes">
<div class="card-body">
<h5 class="card-text"><b>Race Day Ready</b></h5>
<p class="card-text">We've curated a collection of winning looks</p>
<a href="#" style="color: black;"><small><u>Shop Now</u></small></a>
</div>
</div>
</div>
<! 3rd category>
<div class="col-sm-3">
<div class="card mb-3">
<img style="height: 100%; width: 100%; display: block;" src="images/glasses.jpg" alt="Glasses">
<div class="card-body">
<h5 class="card-text"><b>glasses</b></h5>
<p class="card-text">Declaration of belonging, style and attitude</p>
<a href="#" style="color: black;"><small><u>Shop Now</u></small></a>
</div>
</div>
</div>
<! 4th category>
<div class="col-sm-3">
<div class="card mb-3">
<img style="height: 100%; width: 100%; display: block;" src="images/watches.jpg" alt="watches">
<div class="card-body">
<h5 class="card-text"><b>Watches</b></h5>
<p class="card-text">Punctuate your weekday look with classic</p>
<a href="#" style="color: black;"><small><u>Shop Now</u></small></a>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer.php'; ?>
</body>
</html>