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