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