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