Menu
Coddy logo textTech

Buttons

Lesson 4 of 10 in Coddy's Stopwatch - HTML/CSS/JS Project course.

challenge icon

Challenge

Easy

Below the paragraph you just added, add a div with the class attribute buttons and inside it, add two buttons:

  1. Button with the text Start and the id startStop
  2. Button with the text Reset and the id reset

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 Stopwatch - HTML/CSS/JS Project