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