-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
138 lines (100 loc) · 3.04 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
require_once 'includes/header.inc.php';
?>
<link rel="stylesheet" href="css/index.css">
<div class="container-fluid bg-success">
<div class="row-5">
<div class="col-12">
<img src="images/truck2.jpg" alt="Tech">
<div class="carousel-caption">
<div class="center-text">
<h2><b>We value nature.<br>We value your time.</b></h2>
</div>
</div>
</div>
</div>
</div>
<div class="well bg-dark text-light text-center p-3">
<h2><i>We provide</i></h2>
<div class="row justify-content-center">
<h4 class="col-6 my-4 ">We provide solutions for your circular economy. BioPak specializes in taking your
problem away from you and into our hands</h4>
</div>
</div>
<div class="container p-4 justify-content-center intro-img">
<div class="row d-flex justify-content-center">
<div class="col-8 col-md-4">
<img src="images/biosign.jpg" alt="Bio Sign">
</div>
<div class="col-5">
<h4><b>All our products are fully recyclable and reusable</b></h4>
</div>
</div>
<br>
<hr>
<br>
<div class="row d-flex flex-wrap justify-content-center">
<div class="col-5">
<h4><b>Our crew works hard to bring the fastest delivery possible
We value your time</b></h4>
</div>
<div class="col-8 col-md-4 ml-4 fleet">
<img src="images/truck-fleet.jpg" alt="Our_Fleet">
</div>
</div>
<br>
<hr>
<br>
<div class="row justify-content-center data">
<div class="col-7 col-md-5">
<img src="images/data.jpg" alt="Data">
</div>
<div class="col-7 col-md-4">
<h4><b>We keep your data private and we do not brag upon your success.
</b></h4>
</div>
</div>
</div>
<div class="tech-wrap bg-dark justify-content-center text-center">
<div class="container tech-cont">
<div class="tech-col mx-auto">
<hr>
<h3>We use technology to bring our service closer to you.</h3>
<br>
<hr>
<img src="images/tech.jpg" alt="Tech">
</div>
<div class="tech-col mx-auto">
<hr>
<h3>Help us clean the environment and we will help you package your products</h3>
<br>
<hr>
<img src="images/plastic.jpg" alt="Tech">
</div>
</div>
</div>
<div class="container-fluid bg-light text-center p-4 tags">
<div class="container">
<h2><i>Partner With Us</i></h2>
<br>
<div class="row d-flex justify-content-center partner">
<h4>10,000 test pieces</h4>
<h4>Free shipping(except Basic)</h4>
<h4>Guaranteed satisfaction</h4>
<h4>20+ years experience</h4>
<h4>Non-toxis materials</h4>
<h4>Modern style</h4>
<h4>Value privacy</h4>
<h4>Competitive prices</h4>
<h4>Creative designs</h4>
</div>
</div>
</div>
<div class="well p-5 text-center direct">
<h2 class=""><i>View Our Solutions</i></h2>
<br>
<a href="solutions.php"><button class="btn btn-warning btn-lg" type="button" name="button">Solutions</button></a>
</div>
<?php
include 'includes/footer.inc.php';
?>