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