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