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