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