Font Awesome Sliders Icon (Adjust, Settings, Tuning)

In this tutorial we will learn how to use Font Awesome Sliders Icon also known as fa fa- sliders.It used represents Adjust, Settings, Tuning lever that is moved horizontally or vertically to control a variable, such as the volume of a radio. You can also change the sliders icon's color, font size, style, and animation in the 'Try it' editor.

Fontawesome Version 4.X

sliders

<i class='fa fa-sliders'></i>

sliders

<i class='fa fa-sliders' style='color: white'></i>

sliders

<i class='fa fa-sliders' style='color: red'></i>

sliders

<i class='fa fa-sliders' style='color: blue'></i>

sliders

<i class='fa fa-sliders' style='color: #f3da35'></i>
Try it Yourself

Fontawesome Version 6.X

sliders

Web

<i class='fa-solid fa-sliders'></i>

React

<FontAwesomeIcon icon="fa-solid fa-sliders" />

Vue

<font-awesome-icon icon="fa-solid fa-sliders" />

sliders

Web

<i class='fa-solid fa-sliders' style='color: white'></i>

React

<FontAwesomeIcon icon="fa-solid fa-sliders" style={{color: 'white'}} />

Vue

<font-awesome-icon icon="fa-solid fa-sliders" :style="{color: 'white'}" />

sliders

Web

<i class='fa-solid fa-sliders' style='color: red'></i>

React

<FontAwesomeIcon icon="fa-solid fa-sliders" style={{color: 'red'}} />

Vue

<font-awesome-icon icon="fa-solid fa-sliders" :style="{color: 'red'}" />

sliders

Web

<i class='fa-solid fa-sliders' style='color: blue'></i>

React

<FontAwesomeIcon icon="fa-solid fa-sliders" style={{color: 'blue'}} />

Vue

<font-awesome-icon icon="fa-solid fa-sliders" :style="{color: 'blue'}" />

sliders

Web

<i class='fa-solid fa-sliders' style='color: #f3da35'></i>

React

<FontAwesomeIcon icon="fa-solid fa-sliders" style={{color: '#f3da35'}} />

Vue

<font-awesome-icon icon="fa-solid fa-sliders" :style="{color: '#f3da35'}" />
Try it Yourself

How to add Font Awesome sliders Icon ?

Font Awesome Icon fa fa sliders 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.

Icon -
<i class='fa fa-sliders'></i>
Icon Code -
fa fa-sliders

HTML Code

Get complete html code for icon sliders

                    
                    <!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-sliders'></i>
                        </body>
                    </html>                    

Tags

Adjust,Settings,Tuning,Controls,Parameters

Change Font Awesome Icon Sliders 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-sliders blue-color'></i> <i class='fa fa-sliders green-color'></i> <i class='fa fa-sliders teal-color'></i> <i class='fa fa-sliders yellow-color'></i> <i class='fa fa-sliders red-color'></i>

Output of the above example will be as below-


Note- Make Sure You have included the below Font Awesome file in header-
            
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>            
            
Related Icons
 

 

Sliders Icon Font Awesome - FAQs

⭐What is the Font Awesome Sliders Icon code?

Icon Code is - fa fa-sliders.

⭐ What does the fa fa-sliders Icon mean?

fa fa-sliders is the Icon code of Font Awesome Sliders.

⭐ Can we add fa fa-sliders Icon in different sizes?

Yes, you can Icon of fa fa-sliders in various pixels.

⭐ How to add a Blue color Font Awesome Sliders Icon?

Add the blue color Sliders icon of the font awesome by using code: fa fa-sliders style='color: blue;'.

⭐ How to make white color icon of a Font Awesome Sliders?

To change the Sliders icon to white color use code: fa fa-sliders style='color: white;'.

Advertisements



Advertisements



Looking For More Icons?