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