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