-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
44 lines (36 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="header">
<strong><a href="home.php" class="logo">Trippy.</a></strong>
<nav class="navbar">
<a href="home.php">home</a>
<a href="about.php">about</a>
<a href="package.php">package</a>
<a href="book.php">book</a>
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</section>
<!-- ... other content ... -->
<!-- footer section start -->
<section class="footer">
<!-- ... other content ... -->
</section>
<!-- footer section ends -->
<!-- About us section -->
<div class="heading" style="background-image: url('images/sea.jpg'); background-repeat: no-repeat;">
<h1>About us</h1>
</div>
<!-- swipper link -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/swiper-bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>