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