-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
121 lines (119 loc) · 5.2 KB
/
index.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Microverse - LibJay</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/cd89c9d82d.js" crossorigin="anonymous"></script>
</head>
<body>
<section id="banner">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Lib<span>Jay</span> Foods Products</h1>
<p>From home or abroad, join intimate culinary experiences led by passionate hosts and chefs that will take your breath away. If your group is made up of 2 or more, you can choose to privatize the experience for yourself and your loved ones.</p>
<div class="form text-center">
<form action="">
<input type="text" placeholder="What are you looking for?">
<button>Search</button>
</form>
</div>
</div>
</div>
</div>
</section>
<section id="about">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="box">
<span class="fa fa-rocket"></span>
<h4>Return Policy</h4>
<p>Money back guarantee</p>
</div>
</div>
<div class="col-md-4">
<div class="box">
<span class="fa fa-users"></span>
<h4>Free Shipping</h4>
<p>On all orders over $25.00</p>
</div>
</div>
<div class="col-md-4">
<div class="box">
<span class="fa fa-shop"></span>
<h4>Store Locator</h4>
<p>Find your nearest store</p>
</div>
</div>
</div>
</div>
</section>
<section id="pricing">
<div class="text-center">
<div class="container">
<h2>Pricing</h2>
<div class="row pt-4">
<div class="col-md-4">
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Bronze</h4>
</div>
<div class="card-body">
<h1><b>$0 </b><small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>10 groups delivery</li>
<li>Shipping fee </li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-lg btn-block btn-outline-info">Sign up for free</button>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Silver</h4>
</div>
<div class="card-body">
<h1><b>$15 </b><small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>20 groups delivery</li>
<li>No Shipping fee</li>
<li>Priority email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-lg btn-block btn-primary">Get started</button>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Gold</h4>
</div>
<div class="card-body">
<h1><b>$29 </b><small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>30 groups delivery</li>
<li>No Shipping fee</li>
<li>Phone and email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-lg btn-block btn-primary">Contact us</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js"></script>
</body>
</html>