Menu
Coddy logo textTech

Finish HTML

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

challenge icon

Challenge

Easy
  1. Below the form tag, create a p tag with the text New to Netflix? After this text, but inside the p tag itself, create an a tag with text Sign up now (it should look like below):

    <p>some text <a href="#">some text</a></p>
  2. Below the p tag, create a small tag with text: 

    This page is protected by Google reCAPTCHA to ensure you're not a bot.
  3. Inside the small tag, after the above text, create an a tag with the text Learn more

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