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