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