-
Notifications
You must be signed in to change notification settings - Fork 1
/
welcome.html
34 lines (30 loc) · 1.01 KB
/
welcome.html
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
button {
border-radius: 25px;
border: 2px solid #73AD21;
height: 70px;
width: 350px;
opacity: 0.5;
}
button:hover {
height: 80px;
width: 370px;
opacity: 1.0;
}
</style>
<title></title>
</head>
<body style="background-image:url(welcomebackground.jpg);background-size: cover;">
<p style="color: black; padding-top: 100px;font-size: 30px;text-align: center;">WELCOME TO TRAVELEXPRESS BOOKINGS
AND RESERVATIONS</p>
<p style="color: blue; padding-top: 20px;font-size: 20px;text-align: center;">TRAVELLING MADE EASY</p>
<br><br><br><br><br><br>
<center><button style="font-size: 25px;text-align: center;color: blue;position: static;"
onclick="window.location.href = 'bookingpage.html';">CONTINUE AS GUEST</button></center><br><br><br>
<center><button style="font-size: 25px;text-align: center;color: blue;position: static;"
onclick="window.location.href = 'loginpage.html';">LOGIN/REGISTER AND CONTINUE</button></center>
</body>
</html>