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