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