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