Menu
Coddy logo textTech

Cloud II

Lesson 5 of 18 in Coddy's Moving Clouds - HTML/CSS/JS Project course.

challenge icon

Challenge

Easy

In the HTML file, create a div inside the cloud div (.cloud) with the class name "cloudBubble1".

 

In the CSS file, target the new div and set:

  1. width to 100px
  2. height to 100px
  3. background color to the same as in the cloud div
  4. border radius of 50px
  5. position to absolute
  6. top to -50px
  7. left to 30px

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