Search Results
Font Awesome Industry Icon (Supplier, Production, Factory)
Fontawesome Version 4.X
industry
<i class='fa fa-industry'></i>
industry
<i class='fa fa-industry' style='color: white'></i>
industry
<i class='fa fa-industry' style='color: red'></i>
industry
<i class='fa fa-industry' style='color: blue'></i>
industry
<i class='fa fa-industry' style='color: #f3da35'></i>
Fontawesome Version 5.X
industry
<i class='fas fa-industry'></i>
industry
<i class='fas fa-industry' style='color: white'></i>
industry
<i class='fas fa-industry' style='color: red'></i>
industry
<i class='fas fa-industry' style='color: blue'></i>
industry
<i class='fas fa-industry' style='color: #f3da35'></i>
Fontawesome Version 6.X
industry
Web
<i class='fa-solid fa-industry'></i>
React
<FontAwesomeIcon icon="fa-solid fa-industry" />
Vue
<font-awesome-icon icon="fa-solid fa-industry" />
industry
Web
<i class='fa-solid fa-industry' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-solid fa-industry" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-solid fa-industry" :style="{color: 'white'}" />
industry
Web
<i class='fa-solid fa-industry' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-solid fa-industry" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-solid fa-industry" :style="{color: 'red'}" />
industry
Web
<i class='fa-solid fa-industry' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-solid fa-industry" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-solid fa-industry" :style="{color: 'blue'}" />
industry
Web
<i class='fa-solid fa-industry' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-solid fa-industry" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-solid fa-industry" :style="{color: '#f3da35'}" />
How to add Font Awesome industry Icon ?
Font Awesome Icon fa fa industry Icon can be added to any web page simply as below. You can integrate Icon in web pages by just adding following below syntax & icon code.
HTML Code
Get complete html code for icon industry
Change Font Awesome Icon Industry Color
Sometimes we need icons in different color, as we suggested by adding css style we can change color. Here we have created one example to change color of icons with css classes.
<style>
.blue-color {
color:blue;
}
.green-color {
color:green;
}
.teal-color {
color:teal;
}
.yellow-color {
color:yellow;
}
.red-color {
color:red;
}
</style>
<i class='fa fa-industry blue-color'></i>
<i class='fa fa-industry green-color'></i>
<i class='fa fa-industry teal-color'></i>
<i class='fa fa-industry yellow-color'></i>
<i class='fa fa-industry red-color'></i>
Output of the above example will be as below-
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
Industry Icon Font Awesome - FAQs
⭐What is the Font Awesome Industry Icon code?Icon Code is - fa fa-industry.
⭐ What does the fa fa-industry Icon mean?fa fa-industry is the Icon code of Font Awesome Industry.
⭐ Can we add fa fa-industry Icon in different sizes?Yes, you can Icon of fa fa-industry in various pixels.
⭐ How to add a Blue color Font Awesome Industry Icon?Add the blue color Industry icon of the font awesome by using code: fa fa-industry style='color: blue;'.
⭐ How to make white color icon of a Font Awesome Industry?To change the Industry icon to white color use code: fa fa-industry style='color: white;'.
Advertisements
Advertisements