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