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
'30Days of HTML CSS' 카테고리의 다른 글
[30Days of HTML CSS] Day 06 | Text-Overflow Property Lab (0) | 2023.11.22 |
---|---|
[30Days of HTML CSS] Day 05 | Figure Tag Lab (0) | 2023.11.21 |
[30Days of HTML CSS] Day 04 | Position Property Lab (0) | 2023.11.20 |
[30Days of HTML CSS] Day 02 | Input Types Lab (0) | 2023.11.20 |
[30 Days of HTML CSS] Day 01 | Semantic HTML Structure (0) | 2023.11.17 |