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