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