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