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