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