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