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