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