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