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