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