-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomplete-booking.html
More file actions
47 lines (44 loc) · 1.02 KB
/
complete-booking.html
File metadata and controls
47 lines (44 loc) · 1.02 KB
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
<!DOCTYPE html>
<html>
<style>
header {
background-color: gold;
border: 2px solid gold;
padding: 10px 14px 3px 100px;
font-family: helvetica;
position: absolute;
left: 0;
right: 0;
top: 0;
}
article {
background-color: white;
font-family: helvetica;
margin: 40px 500px 0px 90px;
padding: 1px 18px 18px 18px;
border-radius: 2px;
box-shadow: 0px 2px rgba(192, 192, 192, 0.19);
}
body {
background-color: rgba(192, 192, 192, 0.19);
}
</style>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Favicom-->
<link rel='icon' href='favicon.ico' type='image/x-icon'/ >
<title>Expedia Clone</title>
</head>
<body>
<header>
<!--Logo-->
<a href="index.html"><img src="logo.svg" alt="Expedia Logo"></a>
</header>
<br>
<br>
<article>
<center><h1>Congratulations, you're booking is complete, have a nice trip!</h1><center>
</article>
</body>
</html>