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