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