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