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