[trying to draw these shapes with HTML and CSS][1]
how should I draw them using only HTML and CSS [1]: https://i.stack.imgur.com/8mvdY.png
send me working code if possible
[trying to draw these shapes with HTML and CSS][1]
how should I draw them using only HTML and CSS [1]: https://i.stack.imgur.com/8mvdY.png
send me working code if possible
You can replicate those shapes using thick, colored borders.
.shapes{
box-sizing: border-box;
width:100px;
height:100px;
border-top:red solid 30px;
border-right:blue solid 30px;
border-bottom:yellow solid 30px;
border-left:green solid 30px;
}
.shapes-full-fill{
box-sizing: border-box;
width:100px;
height:100px;
border-top:red solid 50px;
border-right:blue solid 50px;
border-bottom:yellow solid 50px;
border-left:green solid 50px;
}
<div class="shapes"></div>
<br>
<div class="shapes-full-fill"></div>