Menu
Coddy logo textTech

Finish HTML

Lesson 3 of 11 in Coddy's Circular Progress Bar | Front-end Project course.

Here we will complete our HTML part.

Visualization of classes:

challenge icon

Challenge

Easy

Inside class container:

  1. Create one div with class name circular-progress
  2. Inside circular-progress, create span tag with class name progress-value and add the text 0%
  3. Below circular-progress, create span tag with class name text and add text of your choice.

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 Circular Progress Bar | Front-end Project