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