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