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