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