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