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