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