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