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