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