-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
66 lines (53 loc) · 1.14 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
<html >
<head>
<title>Home Page</title>
<style>
*{
background-color:#e8e4e4;
}
p{
text-align: center;
}
h1{
text-align: center;
}
a:hover{
color: yellow;
}
.image{
text-align: center;
}
hr{
border-width: 0.2em;
}
@keyframes slide-in {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0);
}
}
/* Style the animated title */
h2 {
font-size: 3em;
color: #333;
text-align: center;
animation: slide-in 1s ease-out;
}
</style>
</head>
<body>
<h1> APATH </h1>
<hr>
<br><br>
<?php
include('loginnav.php');
?>
<h2 style = 'text-align: center'>Welcome to Atlanta, GA</h2><br>
<div class = 'image'><img src = "atl.jpg" style ="wdith : 100%; height: 100%"> </div>
<h3 style = 'text-align: center'>Thank you for using our Airport Pickup</h3><br><br>
<h3 style = 'text-align: center'><a href = '#'>Covid information and guildlines </a><h3>
<br><br><br><br>
</body>
</html>