forked from jzamora5/AirBnB_clone_v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1-index.html
executable file
·38 lines (35 loc) · 912 Bytes
/
1-index.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
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AirBnB clone</title>
<style>
body {
margin: 0px;
padding: 0px;
}
header {
background-color: #FF0000;
height: 70px;
width: 100%;
}
footer {
background-color: #00FF00;
height: 60px;
width: 100%;
position: absolute;
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
bottom: 0;
}
</style>
</head>
<body>
<header> </header>
<footer>
<p>Holberton School</p>
</footer>
</body>
</html>