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