-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaula326a.html
52 lines (50 loc) · 1.36 KB
/
aula326a.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
50
51
52
<!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>Document</title>
<style>
*{
margin: 0;
padding: 0;
}
body{
background-image: url(https://assets.nflxext.com/ffe/siteui/vlv3/ed0b5df9-ba9d-4534-bd09-57993daeda56/52609230-dd78-4dba-82a1-8bb3ac3803e6/BR-pt-20220214-popsignuptwoweeks-perspective_alpha_website_large.jpg);
background-position: top center;
}
#heading{
background: rgba(0, 0, 0, 0.8);
}
#heading div{
width: 90%;
display: flex;
justify-content: space-between;
margin: 0 auto;
}
#heading .h1{
padding: 15px 0;
font-size: 30px;
text-transform: uppercase;
}
#heading a{
color: #fff;
text-decoration: none;
font-family: sans-serif;
}
</style>
</head>
<body>
<header id="heading">
<div>
<h1 class="h1">
<a href="#">Netflix</a>
</h1>
<h2 class="h1">
<a href="#">Netflix</a>
</h2>
</div>
</header>
</body>
</html>