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