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