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