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