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