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