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