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