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