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