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