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