I am trying to use the unique font called lobster. After downloading the lobster.woff2
file, I stored it in the font folder.
In my custom CSS, I added the following:
@font-face {
font-family: 'Lobster';
font-style: normal;
font-weight: 400;
src: local('Lobster'), local('Lobster-Regular'),
url(./fonts/lobster.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
.wishes,{
color: #ff6315;
font-size: 24px;
font-weight: bold;
font-family: 'Lobster', cursive !important;
}
While this setup is functional in Chrome and Firefox, unfortunately it does not work in IE.