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