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