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