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