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