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