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