Font Awesome Chevron Left Icon (Leftward, Direction, Navigate)

The Font Awesome Chevron Left Icon is used indicate Leftward, Direction, Navigate. This icon has 3 version : fa fa-chevron-left for version 4, fas fa-chevron-left for version 5 and fa-solid fa-chevron-left for version 6.

Fontawesome Version 4.X

chevron left

<i class='fa fa-chevron-left'></i>

chevron left

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

chevron left

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

chevron left

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

chevron left

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


Fontawesome Version 5.X

chevron left

<i class='fas fa-chevron-left'></i>

chevron left

<i class='fas fa-chevron-left' style='color: white'></i>

chevron left

<i class='fas fa-chevron-left' style='color: red'></i>

chevron left

<i class='fas fa-chevron-left' style='color: blue'></i>

chevron left

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

Fontawesome Version 6.X

chevron left

Web

<i class='fa-solid fa-chevron-left'></i>

React

<FontAwesomeIcon icon="fa-solid fa-chevron-left" />

Vue

<font-awesome-icon icon="fa-solid fa-chevron-left" />

chevron left

Web

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

React

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

Vue

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

chevron left

Web

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

React

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

Vue

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

chevron left

Web

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

React

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

Vue

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

chevron left

Web

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

React

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

Vue

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

How to add Font Awesome chevron left Icon ?

Font Awesome Icon fa fa chevron left 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-chevron-left'></i>
Icon Code -
fa fa-chevron-left

HTML Code

Get complete html code for icon chevron left

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

Tags

Back,Previous,Direction,Navigate,Leftward

Change Font Awesome Icon Chevron left 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-chevron-left blue-color'></i> <i class='fa fa-chevron-left green-color'></i> <i class='fa fa-chevron-left teal-color'></i> <i class='fa fa-chevron-left yellow-color'></i> <i class='fa fa-chevron-left 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'>            
            

Chevron Left Icon Font Awesome - FAQs

⭐What is the Font Awesome Chevron Left Icon code?

Icon Code is - fa fa-chevron-left.

⭐ What does the fa fa-chevron-left Icon mean?

fa fa-chevron-left is the Icon code of Font Awesome Chevron Left.

⭐ Can we add fa fa-chevron-left Icon in different sizes?

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

⭐ How to add a Blue color Font Awesome Chevron Left Icon?

Add the blue color Chevron Left icon of the font awesome by using code: fa fa-chevron-left style='color: blue;'.

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

To change the Chevron Left icon to white color use code: fa fa-chevron-left style='color: white;'.

Advertisements



Advertisements



Looking For More Icons?