-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
108 lines (95 loc) · 4.48 KB
/
index.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
/**
* OMAR AHMED REFAAT ELDANASOURY, 202005808
* ITCS333-SEC 03 , COURSE PROJECT, ALONE
*/ ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main Page</title>
<!-- Adding the css files -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/bootstrap-responsive.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css" />
<!-- Adding the Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
</style>
<!-- Adding FontAwesome Kit -->
<script src="https://kit.fontawesome.com/163915b421.js" crossorigin="anonymous"></script>
</head>
<body>
<?php require("header.php"); ?>
<main>
<h1>Welcome to Our Website</h1>
<p class="light-font300">Get the chance to have <span class="italic light-font300">amazing times with friends
and family</span> during
our trips!
</p>
<a href="#" class="butn primary-butn">Explore Catalogue</a>
<!-- <img src="images/bab-bahrain.jpg" alt="Bab-Bahrain"> -->
</main>
<section class="section">
<div class="icons-sec1">
<i class="fa-solid fa-face-smile"></i>
<h2>Enjoy Your Time</h2>
<p class="light-font300">Whether you are alone or with family and friends</p>
</div>
<div class="icons-sec2">
<i class="fa-regular fa-map"></i>
<h2>Expand Your Horizons</h2>
<p class="light-font300">Explore Wonderful Places in the Kingdom of Bahrain</p>
</div>
<div class="icons-sec3">
<i class="fa-solid fa-user-group"></i>
<h2>Expand your network</h2>
<p class="light-font300">Group trips to meet new people and have a nice time together</p>
</div>
</section>
<section class="section feedback">
<div class="icons-sec1">
<img class="reviewer" src="/333Project/images/Mohamed2.jpg" alt="Mohamed">
<h2 class="name">Mohamed</h2>
<p class="light-font300 italic">"I have enjoyed the most wonderful trips in my life with BBay trips!"</p>
</div>
<div class="icons-sec3">
<img class="reviewer" src="/333Project/images/Sarah.jpg" alt="Mohamed">
<h2 class="name">Sarah</h2>
<p class="light-font300 italic">"These trips were the best trips ever with my family!"</p>
</div>
<div class="icons-sec2">
<img class="reviewer" src="/333Project/images/James2.jpg" alt="Mohamed">
<h2 class="name">James</h2>
<p class="light-font300 italic">"Always remember the amazing moments with my friends and family, thanks to
BBay!"
</p>
</div>
</section>
<footer>
<a href="catalogue.php">Browse Catalogue</a>
<br>
<a href="#" class="social">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="#" class="social">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="#" class="social">
<i class="fa-brands fa-instagram"></i>
</a>
<p>Copyrights © Omar Ahmed Eldanasoury, 202005808</p>
</footer>
<!-- Bootstrap via web -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>