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