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