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