Search Results
Font Awesome Users Icon (Member, Humans, People)
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>
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>
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'}" />
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.
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-
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
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