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
 

 

Advertisements



Advertisements



Looking For More Icons?