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