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