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