Adding my own unique style with CSS
@font-face {
font-family: 'CustomFont';
src: url(./fonts/custom/CustomFont.otf);
}
h4.CustomFont-style {
font-family: 'CustomFont', sans-serif !important ;
}
Using the custom font in HTML
<h4 class="CustomFont-style text-uppercase">Unique Text</h4>
The current console display is as follows, but I aim to replace it with my custom font:
font-family": '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif'