Font Awesome Users Icon (Member, Humans, People)

The Font Awesome Users Icon is used indicate Member, Humans, People. This icon has 3 version : fa fa-users for version 4, fas fa-users for version 5 and fa-solid fa-users for version 6. It used refers to person who uses a service, machine, place, etc. If you want to edit or customize this users icon, utilize the 'Try It' editor to change its color, size, and animation.

Fontawesome Version 4.X

users

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

users

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

users

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

users

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

users

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


Fontawesome Version 5.X

users

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

users

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

users

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

users

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

users

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

Fontawesome Version 6.X

users

Web

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

React

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

Vue

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

users

Web

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

React

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

Vue

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

users

Web

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

React

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

Vue

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

users

Web

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

React

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

Vue

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

users

Web

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

React

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

Vue

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

How to add Font Awesome users Icon ?

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

HTML Code

Get complete html code for icon users

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

Tags

member,humans,organization,profile,People

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

Users Icon Font Awesome - FAQs

⭐What is the Font Awesome Users Icon code?

Icon Code is - fa fa-users.

⭐ What does the fa fa-users Icon mean?

fa fa-users is the Icon code of Font Awesome Users.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?