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