I'm seeking assistance with incorporating basic HTML and CSS into a grid layout.
I'd like to include an image that represents the result I am aiming for:
https://i.sstatic.net/MsrX5.png
#rectangle {
width: 100%;
height: 40px;
background: #8DB23F;
}
<div class="row">
<div class="col-md-12" id="rectangle"><span id="first" style="background-color:white;color:#8DB23F;font-size:40px;padding:7px 0px 2px 1px;border-color:white;margin-left: -15px;"><strong> JAW CRUSHER </strong></span></div>
</div>
I have managed to create this layout, but it is not responsive. Can someone please help me fix this issue?