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