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