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