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