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