Use on the webTotal Use [ 6616 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/5be13b21fc2a45c4e49d299ba13dbaea?family=Equalizer+Script" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/5be13b21fc2a45c4e49d299ba13dbaea?family=Equalizer+Script);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Equalizer Script";
src: url("https://db.onlinewebfonts.com/t/5be13b21fc2a45c4e49d299ba13dbaea.eot");
src: url("https://db.onlinewebfonts.com/t/5be13b21fc2a45c4e49d299ba13dbaea.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/5be13b21fc2a45c4e49d299ba13dbaea.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/5be13b21fc2a45c4e49d299ba13dbaea.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/5be13b21fc2a45c4e49d299ba13dbaea.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/5be13b21fc2a45c4e49d299ba13dbaea.svg#Equalizer Script")format("svg");
}
2CSS rules to specify fonts
font-family: "Equalizer Script";