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