Search Results
Font Awesome Power Off (Electricity, Shutdown, Switch Off )
Fontawesome Version 4.X
power off
<i class='fa fa-power-off'></i>
power off
<i class='fa fa-power-off' style='color: white'></i>
power off
<i class='fa fa-power-off' style='color: red'></i>
power off
<i class='fa fa-power-off' style='color: blue'></i>
power off
<i class='fa fa-power-off' style='color: #f3da35'></i>
Fontawesome Version 5.X
power off
<i class='fas fa-power-off'></i>
power off
<i class='fas fa-power-off' style='color: white'></i>
power off
<i class='fas fa-power-off' style='color: red'></i>
power off
<i class='fas fa-power-off' style='color: blue'></i>
power off
<i class='fas fa-power-off' style='color: #f3da35'></i>
Fontawesome Version 6.X
power off
Web
<i class='fa-solid fa-power-off'></i>
React
<FontAwesomeIcon icon="fa-solid fa-power-off" />
Vue
<font-awesome-icon icon="fa-solid fa-power-off" />
power off
Web
<i class='fa-solid fa-power-off' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-solid fa-power-off" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-solid fa-power-off" :style="{color: 'white'}" />
power off
Web
<i class='fa-solid fa-power-off' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-solid fa-power-off" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-solid fa-power-off" :style="{color: 'red'}" />
power off
Web
<i class='fa-solid fa-power-off' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-solid fa-power-off" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-solid fa-power-off" :style="{color: 'blue'}" />
power off
Web
<i class='fa-solid fa-power-off' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-solid fa-power-off" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-solid fa-power-off" :style="{color: '#f3da35'}" />
How to add Font Awesome power off Icon ?
Font Awesome Icon fa fa power off 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 power off
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<i class='fa fa-power-off'></i>
</body>
</html>
Tags
electricity,shutdown ,close ,switch off
Change Font Awesome Icon Power off 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-power-off blue-color'></i>
<i class='fa fa-power-off green-color'></i>
<i class='fa fa-power-off teal-color'></i>
<i class='fa fa-power-off yellow-color'></i>
<i class='fa fa-power-off 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'>
Power Off Icon Font Awesome - FAQs
⭐What is the Font Awesome Power Off Icon code?Icon Code is - fa fa-power-off.
⭐ What does the fa fa-power-off Icon mean?fa fa-power-off is the Icon code of Font Awesome Power Off.
⭐ Can we add fa fa-power-off Icon in different sizes?Yes, you can Icon of fa fa-power-off in various pixels.
⭐ How to add a Blue color Font Awesome Power Off Icon?Add the blue color Power Off icon of the font awesome by using code: fa fa-power-off style='color: blue;'.
⭐ How to make white color icon of a Font Awesome Power Off?To change the Power Off icon to white color use code: fa fa-power-off style='color: white;'.
Advertisements
Advertisements