-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.html
51 lines (43 loc) · 1.43 KB
/
order.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Item Lists</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap stylesheet -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- css stylesheet -->
<link rel="stylesheet" type="text/css" href="order.css">
</head>
<body>
<section id="item_sec">
<div class="container">
<h1 class="title"><b>Our Services</b></h1>
<div class="row">
<div class="card col-ml-6" style="width: 18rem;">
<img class="card-img-top veg_img" src="images/veg.jpg" alt="vegetable">
<div class="card-body">
<h5 class="card-title">Vegetables</h5>
<a href="#" class="btn btn-primary" onclick="buyVeg()">Buy Now</a>
</div>
</div>
<div class="card col-ml-6" style="width: 18rem;">
<img class="card-img-top fruit_img" src="images/fruits.jpg" alt="fruits">
<div class="card-body">
<h5 class="card-title">Fruits</h5>
<a href="#" class="btn btn-primary" onclick="buyFruit()">Buy Now</a>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript">
function buyVeg(){
window.location.href = "buyVeg.html";
}
function buyFruit(){
window.location.href = "buyFruit.html";
}
</script>
</body>
</html>