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