Netflix Web Design HTML & CSS Code

 

Netflix Web Design HTML & CSS Code

Title: "Netflix Web Design Tutorial: HTML & CSS Code | Create a Stunning Streaming Site!"

Description: 🚀 Dive into the world of web design with this step-by-step tutorial on creating a Netflix-inspired website using HTML and CSS! 🎨💻 👉 In this tutorial, we'll break down the process of designing a sleek and responsive streaming site like Netflix. From creating the layout to styling with CSS, you'll learn the essentials of web development and design. 🔥 What You'll Learn: HTML structure for a streaming site CSS styling for a modern and engaging interface Responsive design principles Tips and tricks for creating a polished user experience Follow along with the tutorial and build your own Netflix-inspired web design masterpiece! Don't forget to customize and add your unique touch to make it stand out. 📌 Timestamps: 0:00 - Introduction 1:15 - Setting up the HTML structure 3:30 - Styling with CSS 6:45 - Creating a responsive layout 9:20 - Final touches and enhancements 🔔 Subscribe for more web development tutorials and hit the bell icon to stay updated with the latest content! #WebDesign #HTML #CSS #NetflixDesign #CodingTutorial #WebDevelopment #NetflixClone #FrontEndDevelopment #CodeWithMe #LearnCoding #Programming #ResponsiveDesign #UIUX




* {
  margin: 0;
  padding: 0;
}

.root {
  height: 100vh;
  background-image: url("bg.jpg");
  width: 100%;
  background-position: center;
  background-size: cover;
}

header {
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header h3 {
  color: red;
  font-weight: bolder;
  font-size: 45px;
  text-shadow: 2px 2px black;
}

select {
  width: 150px;
  height: 30px;
  background-color: rgb(29, 14, 14);
  border: 3px solid #fff;
  color: #fff;
}

button {
  height: 30px;
  width: 100px;
  background-color: red;
  font-weight: bolder;
  color: #fff;
  border-radius: 5px;
  border: none;
}

h2 {
  color: #fff;
  margin-top: 200px;
  text-align: center;
  font-size: 55px;
}

p {
  color: #fff;
  margin-top: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.inptele {
  height: 50px;
  width: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inptele input {
  height: 40px;
  width: 60%;
  background-color: rgb(23, 21, 21);
  color: #fff;
}

.inptele button {
  height: 45px;
  width: 140px;
  margin-left: 10px;
}

<!DOCTYPE html>

<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Netflix Web Design</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div class="root">
      <header>
        <h3>NetFlix</h3>

        <div class="rightele">
          <select>
            <option value="English">English</option>
            <option value="Hindi">Hindi</option>
          </select>

          <button>signIn</button>
        </div>
      </header>

      <h2>Unlimited movies, TV shows and more</h2>
      <p>Watch anywhere. Cancel anytime.</p>
      <p>
        Ready to watch? Enter your email to create or restart your membership.
      </p>

    <div class="inptele">
        <input type="text" placeholder="Email Address" />
        <button>GetStarted</button>
    </div>
    </div>
  </body>
</html>


No comments: