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