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