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