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