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