Use on the webTotal Use [ 6152 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/bad0c1aaecdeab6dcffeab36414c6544?family=Citaro+Voor+%28dubbele+hoogte%2C+midden%2Fdubbel%29+Regular" 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/bad0c1aaecdeab6dcffeab36414c6544?family=Citaro+Voor+%28dubbele+hoogte%2C+midden%2Fdubbel%29+Regular); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Citaro Voor (dubbele hoogte, midden/dubbel) Regular";
    src: url("https://db.onlinewebfonts.com/t/bad0c1aaecdeab6dcffeab36414c6544.eot");
    src: url("https://db.onlinewebfonts.com/t/bad0c1aaecdeab6dcffeab36414c6544.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/bad0c1aaecdeab6dcffeab36414c6544.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/bad0c1aaecdeab6dcffeab36414c6544.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/bad0c1aaecdeab6dcffeab36414c6544.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/bad0c1aaecdeab6dcffeab36414c6544.svg#Citaro Voor (dubbele hoogte, midden/dubbel) Regular")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Citaro Voor (dubbele hoogte, midden/dubbel) Regular";