Menu
Coddy logo textTech

Code Setup

Lesson 2 of 10 in Coddy's Solar Eclipse Animation | HTML/CSS Project course.

Let's start!

challenge icon

Challenge

Easy

In the HTML file:

  1. Create a title tag and add text of your choice. (For example: “Solar Eclipse Animation”)
  2. Just below the title tag, add the following link tag:

    <link rel="stylesheet" href="styles.css">

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <!-- Write Setup code here-->
</head>
    <body>
        <!-- Write HTML code here -->
        
    </body>
</html>

All lessons in Solar Eclipse Animation | HTML/CSS Project