Font Awesome Quote Left ( Inverted Commas, Quotation, Double Quotes)

In this tutorial, we will learn how to use the Font Awesome "quote-left" icon, which is used for inverted commas, quotations, and double quotes. This icon is also known as "fa fa-quote-left". we will demonstrate how to customize color, size and animation in font awesome quote left

Fontawesome Version 4.X

quote left

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

quote left

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

quote left

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

quote left

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

quote left

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


Fontawesome Version 5.X

quote left

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

quote left

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

quote left

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

quote left

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

quote left

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

Fontawesome Version 6.X

quote left

Web

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

React

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

Vue

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

quote left

Web

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

React

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

Vue

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

quote left

Web

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

React

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

Vue

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

quote left

Web

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

React

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

Vue

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

quote left

Web

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

React

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

Vue

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

How to add Font Awesome quote left Icon ?

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

HTML Code

Get complete html code for icon quote 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-quote-left'></i>
                        </body>
                    </html>                    

Tags

blockquote,quotes,quotation,Typography,inverted commas,double quotes

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

Advertisements



Advertisements



Looking For More Icons?