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