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