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