My project requires a rectangle box with a red diamond inside it, like the image below. I'm not sure if I need to use an image to achieve this, or pure CSS, or an SVG? I'd rather not use an image but i'm not sure how to achieve it with CSS or an SVG?
The rectangles CSS
.rectangle {
width: 98px;
height: 45px;
border: 1px solid white;
display: inline-block;
position: relative;
border-bottom: 2px solid white;
}
What I need (made in paint.net)