-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
40 lines (30 loc) · 1.15 KB
/
Copy pathabout.php
File metadata and controls
40 lines (30 loc) · 1.15 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
<?php
include('includes/database.php');
include('includes/config.php');
include('includes/functions.php');
?>
<!doctype html>
<html>
<?php
include('reusable/head.php')
?>
<main>
<div class="container-fluid">
<div class="container my-5">
<div class="row p-4 pb-0 pe-lg-0 pt-lg-5 align-items-center rounded-3 border shadow-lg">
<div class="col-lg-7 p-3 p-lg-5 pt-lg-3">
<h2 class="display-3 pb-5">About Us</h2>
<p>In 2024, we launched a website dedicated to providing valuable information for museum and gallery destinations in Toronto.</p>
<p>Our platform also offers transparent reviews, and we eagerly welcome your contributions to enhance our service.</p>
</div>
<div class="col-lg-4 offset-lg-1 p-0 overflow-hidden shadow-lg">
<img class="rounded-lg-3" src="admin/imgs/robin-schreiner-YKE4zTW5lic-unsplash.jpg" alt="" width="480">
</div>
</div>
</div>
</main>
<?php
include('reusable/foot.php')
?>
</body>
</html>