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