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