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