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