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_.svgChallenge
Easy- Add the
titletag and text of your choice in theheadtag. - In the
bodytag, create anavtag, and below the nav, create onedivwith the class nameform-wrapper. - Inside the
nav, create one image tag with thesrcof the Netflix logo (above is the url), and also fill thealtattribute 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
1Introduction
What are you going to make?