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