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