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