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