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