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