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