I've been trying to create a rectangular button in Shopify's liquid code, which involves a combination of HTML and CSS. My goal is to have this button link to a specific website URL when clicked. However, I encountered an issue where the button appears as a square instead of a rectangle. Additionally, I'm unsure about how to properly integrate the URL link into the code.
.square {
display: flex;
height:200px;
width:400px;
background-color:#8F0000;
}
<div class="sqaure">
colored square
</div>