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