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