-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetflix.html
More file actions
101 lines (88 loc) · 1.88 KB
/
netflix.html
File metadata and controls
101 lines (88 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<title>Netflix Clone</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #111;
}
header {
background-image: url(nwt1.webp);
background-size: cover;
color: #fff;
text-align: center;
padding: 100px 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 100px;
font-size: x-large;
}
nav img {
width: 100px;
}
nav ul {
list-style-type: none;
display: flex;
}
nav li {
margin: 0 20px;
}
nav a {
text-decoration: none;
color: #fff;
}
.hero {
max-width: 800px;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.6);
padding: 20px;
border-radius: 5px;
}
h1 {
font-size: 36px;
}
p {
font-size: 18px;
}
button {
background-color: #e50914;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
margin-top: 20px;
}
button:hover {
background-color: #ff3d3f;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><img src="https://media.idownloadblog.com/wp-content/uploads/2018/01/Netflix-Logo.png" width="100" height="100"></li>
<li><a href="#">Home</a></li>
<li><a href="#">TV Shows</a></li>
<li><a href="#">Movies</a></li>
<li><a href="#"></a></li>
<li><a href="#">My List</a></li>
</ul>
</nav>
<div class="hero">
<h1>Unlimited movies, TV shows, and more.</h1>
<p>Watch anywhere. Cancel anytime.</p>
<button>Sign Up</button>
</div>
</header>
<!-- Content and more sections here -->
</body>
</html>