-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgrids.php
22 lines (22 loc) · 815 Bytes
/
grids.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3 style="color:#dc3545;" >About Us</h3>
<p class="b" style="color:#fff;" ><?php require_once ('data/about.php')?></p>
<a href="about.php" class="btn btn-danger">Learn more ..</a>
</br></br>
</div>
<div class="col-sm-4">
<h3 style="color:#dc3545;" >Privacy Privacy</h3>
<p class="b" style="color:#fff;" ><?php require_once ('data/privacy.php')?></p>
<a href="privacy.php" class="btn btn-danger">Learn more ..</a>
</br></br>
</div>
<div class="col-sm-4">
<h3 style="color:#dc3545;">Terms and Conditions</h3>
<p class="b" style="color:#fff;" ><?php require_once ('data/terms.php')?></p>
<a href="terms.php" class="btn btn-danger">Learn more ..</a>
</br></br>
</div>
</div>
</div>