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