-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
109 lines (94 loc) · 3.61 KB
/
Copy pathindex.php
File metadata and controls
109 lines (94 loc) · 3.61 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
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
include_once "includes/header.php";
?>
<div class="row">
<div class="col-md-7 mb-4">
<div class="view overlay z-depth-1-half">
<img src="https://mdbootstrap.com/img/Photos/Slides/img%20(70).jpg" class="card-img-top" alt="">
<div class="mask rgba-white-light"></div>
</div>
</div>
<div class="col-md-5 mb-4">
<h2>Some Awesome heading</h2>
<hr>
<p class="align-left">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis pariatur quod ipsum
atque quam dolorem voluptate
officia sunt placeat consectetur dolor sit amet, consectetur adipisicing elit. Blanditiis pariatur quod
ipsum atque quam dolorem voluptate
alias fugit cum praesentium ratione sint mollitia, perferendis natus quaerat!</p>
<a href="#" class="btn btn-md bg-main"> GET IT NOW!</a>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-12 my-4">
<div class="card">
<!--Card image-->
<div class="view overlay">
<img src="https://mdbootstrap.com/img/Photos/Horizontal/Nature/4-col/img%20(72).jpg"
class="card-img-top"
alt="">
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">Card title</h4>
<!--Text-->
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the
card's content.</p>
<a href="#!" class="btn bg-main">Button</a>
</div>
</div>
<!--/.Card-->
</div>
<div class="col-lg-4 col-md-6 my-4">
<div class="card">
<!--Card image-->
<div class="view overlay">
<img src="https://mdbootstrap.com/img/Photos/Horizontal/Nature/4-col/img%20(74).jpg"
class="card-img-top"
alt="">
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">Card title</h4>
<!--Text-->
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the
card's content.</p>
<a href="#!" class="btn bg-main">Button</a>
</div>
</div>
<!--/.Card-->
</div>
<div class="col-lg-4 col-md-6 my-4">
<div class="card">
<!--Card image-->
<div class="view overlay">
<img src="https://mdbootstrap.com/img/Photos/Horizontal/Nature/4-col/img%20(75).jpg"
class="card-img-top"
alt="">
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">Card title</h4>
<!--Text-->
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the
card's content.</p>
<a href="#!" class="btn bg-main">Button</a>
</div>
</div>
</div>
</div>
<?php
include_once "includes/footer.php";
?>