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