Use on the webTotal Use [ 5340 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/6321f661deb3a92e8b6aedb86b5281bb?family=EquipoizeSerif-RegularItalic" 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/6321f661deb3a92e8b6aedb86b5281bb?family=EquipoizeSerif-RegularItalic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "EquipoizeSerif-RegularItalic";
src: url("https://db.onlinewebfonts.com/t/6321f661deb3a92e8b6aedb86b5281bb.eot");
src: url("https://db.onlinewebfonts.com/t/6321f661deb3a92e8b6aedb86b5281bb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6321f661deb3a92e8b6aedb86b5281bb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6321f661deb3a92e8b6aedb86b5281bb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6321f661deb3a92e8b6aedb86b5281bb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6321f661deb3a92e8b6aedb86b5281bb.svg#EquipoizeSerif-RegularItalic")format("svg");
}
2CSS rules to specify fonts
font-family: "EquipoizeSerif-RegularItalic";