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