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