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