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