I'm aiming to create something unique by placing the circle and triangle on the borders of an HTML block.
https://i.sstatic.net/MVYuc.png
Below is the CSS code for my block:
.block {
color: red;
}
.cercle {
border-radius: 50%;
}
.triangle {
width: 0;
height: 0;
border-top: 60px solid transparent;
border-bottom: 60px solid transparent;
border-left: 60px solid red;
}