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