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