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