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