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