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