Hi!
I have Multicollumn Section for which I would like to change the heading font family with Alex Brush or at least Lebelle from the Shopify’s. I’d like to have a handwritten signature-like font there. I tried some stuff like this:
<!DOCTYPE html>
<html lang="en">
<head>
<style>
/* Import the Alex Brush font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
/* Apply the font to the specified Shopify section */
.inline-richtext {
font-family: 'Alex Brush', cursive !important;
}
</style>
</head>
<body>
but it doesn’t seem to work. Can you please tell me step by step what exactly should I do?