Menu
Coddy logo textTech

HTML part

Lesson 2 of 6 in Coddy's CSS Project - Simple Loading Spinner 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 div tag inside the body with the id attribute of "spinner"

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
</body>
</html>

All lessons in CSS Project - Simple Loading Spinner