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