30Days of HTML CSS

[30Days of HTML CSS] Day 03 | CSS Shapes Lab

하나둘세현 2023. 11. 20. 14:00
728x90

<!DOCTYPE html>
<html>
  <head>
    <title>CSS Shapes Lab</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <!-- Create a div with id 'square' -->
    <div id="square"></div>
    <br />
    <!-- Create a div with id 'circle'  -->
    <div id="circle"></div>
  </body>
</html>
/* Write your CSS here */
#square {
  background-color: #d6ccc2;
  width: 100px;
  height: 100px;
}

#circle {
  background-color: #f5ebe0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

 

https://codedamn.com/challenge/30-days-of-html-css

 

30 Days of HTML CSS - Codedamn

Level up your coding skills with a daily coding challenge. Compete and share your progress every day and become a better developer.

codedamn.com

 

 

728x90