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