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