Menu
Coddy logo textTech

Title and Wrapper Setup

Lesson 2 of 19 in Coddy's Netflix Sign-in Page Clone | Front-end project course.

Note: In this project, because we are making an exact clone of the Netflix sign-in page, you might not get that much creative freedom.

Use the logo:

https://images.ctfassets.net/y2ske730sjqp/821Wg4N9hJD8vs5FBcCGg/9eaf66123397cc61be14e40174123c40/Vector__3_.svg
challenge icon

Challenge

Easy
  1. Add the title tag and text of your choice in the head tag.
  2. In the body tag, create a nav tag, and below the nav, create one div with the class name form-wrapper.
  3. Inside the nav, create one image tag with the src of the Netflix logo (above is the url), and also fill the alt attribute with text of your choice.

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Write HTML code here -->
        <script src="script.js"></script>
    </body>
</html>

All lessons in Netflix Sign-in Page Clone | Front-end project