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