-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanner.html
49 lines (43 loc) · 1.08 KB
/
banner.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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Banner</title>
<link rel="stylesheet" href="styles.css">
<!-- Banner styles -->
<style>
* {
margin: 0;
}
.hero {
background: url(./beach-bcg.jpg);
min-height: 100vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
display: flex;
justify-content: center;
align-items: center;
}
h1 {
color: blue;
font-size: 60px;
text-transform: uppercase;
}
.banner {
background: red;
min-height: 100vh;
}
</style>
</head>
<body>
<header class="hero">
<h1>page title</h1>
</header>
<div class="banner"></div>
<a href="index.html">back to home</a>
</body>
</html>