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