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