-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
60 lines (50 loc) · 1.8 KB
/
about.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
<?php
@include 'config.php';
session_start();
$user_id = $_SESSION['user_id'];
if(!isset($user_id)){
header('location:login.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="css/about.css">
</head>
<body>
<?php @include 'header.php'; ?>
<section class="about">
<div class="container">
<h2>Welcome to Our Enchanted Garden</h2>
<div class="content">
<div class="image">
<img src="images/about-img-2.jpg" alt="Image 1">
</div>
<div class="text">
<p>In the heart of the mystical forest lies our enchanted garden, where the most exquisite flowers bloom under the moonlight. Here, we create magic with petals, weaving dreams into every arrangement.</p>
</div>
</div>
<div class="content">
<div class="text">
<p>Our journey began with a single seed and a vision to bring the beauty of nature to the world. With each blossom that unfolds, we are reminded of the power of creation and the wonder of life.</p>
</div>
<div class="image">
<img src="images/about-img-2.jpg" alt="Image 2">
</div>
</div>
<div class="content">
<div class="image">
<img src="images/about-img-3.jpg" alt="Image 3">
</div>
<div class="text">
<p>From delicate roses to vibrant tulips, our garden is home to a kaleidoscope of colors and scents. Every flower tells a story, and we are honored to be part of yours.</p>
</div>
</div>
</div>
</section>
<?php @include 'footer.php'; ?>
</body>
</html>