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