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