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