Font Awesome Question Icon

Font Awesome Question Icon refers to a sentence or phrase that demands a response. This font awesome icon is also known as "fa-Question" or "fa fa Question".

Fontawesome Version 4.X

question

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

question

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

question

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

question

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

question

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


Fontawesome Version 5.X

question

<i class='fas fa-question'></i>

question

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

question

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

question

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

question

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

Fontawesome Version 6.X

question

Web

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

React

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

Vue

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

question

Web

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

React

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

Vue

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

question

Web

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

React

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

Vue

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

question

Web

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

React

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

Vue

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

question

Web

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

React

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

Vue

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

How to add Font Awesome question Icon ?

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

HTML Code

Get complete html code for icon question

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

Tags

inquiry,query,interrogation,examination,quiz,quizzing

Change Font Awesome Icon Question 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-question blue-color'></i>
      <i class='fa fa-question green-color'></i>
      <i class='fa fa-question teal-color'></i>
      <i class='fa fa-question yellow-color'></i>
      <i class='fa fa-question 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?