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