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