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