-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.php
80 lines (61 loc) · 2.95 KB
/
products.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
<?php
require("includes/common.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Products | FPFS</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<?php
include 'includes/header.php';
include 'includes/check-if-added.php';
?>
<div class="container" id="content">
<!-- Jumbotron Header -->
<div class="jumbotron home-spacer" id="products-jumbotron">
<center><h1>किसान पोर्टल पर आपका स्वागत है।</h1>
<p>
किसान उत्पाद कम से कम दामों पर सीधा आपके घर तक</p></center>
</div>
<hr>
<div class="row text-center" id="cameras">
<div class="col-md-4 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/vegt.jpg" alt="">
<div class="caption">
<h3>सब्जियां</h3>
<p><a href="productsvegetable.php" role="button" class="btn btn-primary btn-block">अभी खरीदें</a></p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/Fruits-HD-Wallpaper (2).jpg" alt="">
<div class="caption">
<h3> फल</h3>
<p><a href="productsfruit.php" role="button" class="btn btn-primary btn-block">अभी खरीदें</a></p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 home-feature">
<div class="thumbnail">
<img src="img/grain.jpg" alt="">
<div class="caption">
<h3>धान</h3>
<p><a href="productsgrain.php" role="button" class="btn btn-primary btn-block">अभी खरीदें</a></p>
</a>
</div>
</div>
</div>
</a>
</div>
</div>
<?php include("includes/footer.php"); ?>
</body>
</html>