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