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