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