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