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