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