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