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