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