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