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