Menu
Coddy logo textTech

Title and class calculator

Lesson 2 of 14 in Coddy's DOM Project - Calculator course.

Let's start! Follow the instructions step by step, and you will reach your goal!

challenge icon

Challenge

Easy
  1. In the head tag, add the title tag and text of your choice!
  2. In the body tag, create a div with the class name calculator.

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 DOM Project - Calculator