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