We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTML
Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.
CSS body { font-family: Arial, sans-serif; margin: 0; background-color: #141414; color: #fff; }
header { display: flex; justify-content: space-between; align-items: center; padding: 20px; background-color: #111; }
.logo img { height: 30px; }
nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
nav a { text-decoration: none; color: #fff; font-weight: bold; }
.hero { background-image: url('hero-background.jpg'); background-size: cover; background-position: center; height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.hero-text h1 { font-size: 3em; margin: 0; }
.hero-text p { font-size: 1.5em; margin: 20px 0; }
.hero-text button { padding: 10px 20px; font-size: 1em; background-color: #e50914; border: none; color: #fff; cursor: pointer; }
.movies { padding: 20px; }
.movies h2 { font-size: 2em; margin-bottom: 20px; }
.movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; }
.movie img { width: 100%; border-radius: 5px; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HTML
<title>Netflix Clone</title>Watch Movies and TV Shows Online
Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.
Watch NowPopular on Netflix
CSS
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #141414;
color: #fff;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #111;
}
.logo img {
height: 30px;
}
nav ul {
list-style: none;
display: flex;
gap: 20px;
margin: 0;
padding: 0;
}
nav a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
.hero {
background-image: url('hero-background.jpg');
background-size: cover;
background-position: center;
height: 60vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
}
.hero-text h1 {
font-size: 3em;
margin: 0;
}
.hero-text p {
font-size: 1.5em;
margin: 20px 0;
}
.hero-text button {
padding: 10px 20px;
font-size: 1em;
background-color: #e50914;
border: none;
color: #fff;
cursor: pointer;
}
.movies {
padding: 20px;
}
.movies h2 {
font-size: 2em;
margin-bottom: 20px;
}
.movie-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 20px;
}
.movie img {
width: 100%;
border-radius: 5px;
}
The text was updated successfully, but these errors were encountered: