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