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