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