Shapes with css
1. Square
Html
<div class="square"></div>
Css
.square {
width: 100px;
height: 100px;
background: #f45b69;
}
Preview
2. Circle
Html
<div class="circle"></div>
Css
.circle {
width: 100px;
height: 100px;
border-radius: 50%;
...
lakindu-banneheka.hashnode.dev1 min read
wkylin
react
❤️