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