-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlocal.php
More file actions
50 lines (41 loc) · 1.02 KB
/
Copy pathlocal.php
File metadata and controls
50 lines (41 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<!-- HEAD -->
<?php
include_once ("header.php");
?>
<body class="body-wrapper">
<!--========================================
= Navigation Section and Banner =
=========================================-->
<?php
include_once ("menu.php");
?>
<!--==== End of Navigation Section and Banner====-->
<section class="section about">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 align-self-center">
<div class="image-block bg-about">
<img class="img-fluid" src="images/icone_03.png" alt="">
</div>
</div>
<div class="col-lg-8 col-md-6 align-self-center">
<div class="content-block">
<h2 data-i18n="local.titulo"></h2>
<div class="description-one">
<p data-i18n="local.descricao_1"></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--============================
= Footer =
=============================-->
<?php
include_once ("footer.php");
?>
</body>
</html>