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