-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.php
67 lines (62 loc) · 1.67 KB
/
welcome.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Pratyush">
<meta name="author" content="Aadil">
<meta name="author" content="Vidit">
<title>Welcome to AirMonke</title>
<link rel="airline-logo.jpg" type="image/x-icon" href="favicon.ico" />
</head>
<style>
body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: italic;
background-color: aqua;
background-image: url("bg1.png");
background-position: center;
}
.a1{
height: 200px;
width: 300px;
background-color: bisque;
margin-top: 150px;
margin-left: 600px;
margin-right: 500px;
border-style: double;
border-color: blue;
text-align: center;
padding-top: 60px;
opacity: 80%;
}
.head1{
background-color: orange;
border-color: blue;
border-style: double;
}
.ht1{
margin-left: 700px;
height: 75px;
}
</style>
<body>
<header class="head1">
<table class="ht1">
<tr>
<td><img src="AIRMONKE1-removebg-preview.png" alt="" style="height: 100px;"></td>
</tr>
</table>
</header>
<div class="a1">
<h1>Hello There!</h1>
<form action="" name="welcomeForm">
<label for="Login">Returning User?</label>
<a href="login.php" title="Login">Login!</a>
<br>
<br>
<label for="Register">First Time?</label>
<a href="signup.php" title="SignUp">Sign Up!</a>
</form>
</div>
</body>
</html>