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