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