Menu
Coddy logo textTech

HTML part

Lesson 2 of 8 in Coddy's CSS Project - Fancy Button course.

We'll be using two files:

  • index.html
  • styles.css

You are given the skeleton of index.html including the connection to the styles.css file.

If you ever need to reset, simply click the reset button in the upper right corner to return to the default code!

challenge icon

Challenge

Easy

Add button tag inside the body with the class attribute of "fancyButton"

Don't forget to add text of your choose inside the button!

Try it yourself

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

All lessons in CSS Project - Fancy Button