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