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