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