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