Search Results
Font Awesome Unlock Icon (Access, Open, Unseal)
Fontawesome Version 4.X
unlock
<i class='fa fa-unlock'></i>
unlock
<i class='fa fa-unlock' style='color: white'></i>
unlock
<i class='fa fa-unlock' style='color: red'></i>
unlock
<i class='fa fa-unlock' style='color: blue'></i>
unlock
<i class='fa fa-unlock' style='color: #f3da35'></i>
Fontawesome Version 5.X
unlock
<i class='fas fa-unlock'></i>
unlock
<i class='fas fa-unlock' style='color: white'></i>
unlock
<i class='fas fa-unlock' style='color: red'></i>
unlock
<i class='fas fa-unlock' style='color: blue'></i>
unlock
<i class='fas fa-unlock' style='color: #f3da35'></i>
Fontawesome Version 6.X
unlock
Web
<i class='fa-solid fa-unlock'></i>
React
<FontAwesomeIcon icon="fa-solid fa-unlock" />
Vue
<font-awesome-icon icon="fa-solid fa-unlock" />
unlock
Web
<i class='fa-solid fa-unlock' style='color: white'></i>
React
<FontAwesomeIcon icon="fa-solid fa-unlock" style={{color: 'white'}} />
Vue
<font-awesome-icon icon="fa-solid fa-unlock" :style="{color: 'white'}" />
unlock
Web
<i class='fa-solid fa-unlock' style='color: red'></i>
React
<FontAwesomeIcon icon="fa-solid fa-unlock" style={{color: 'red'}} />
Vue
<font-awesome-icon icon="fa-solid fa-unlock" :style="{color: 'red'}" />
unlock
Web
<i class='fa-solid fa-unlock' style='color: blue'></i>
React
<FontAwesomeIcon icon="fa-solid fa-unlock" style={{color: 'blue'}} />
Vue
<font-awesome-icon icon="fa-solid fa-unlock" :style="{color: 'blue'}" />
unlock
Web
<i class='fa-solid fa-unlock' style='color: #f3da35'></i>
React
<FontAwesomeIcon icon="fa-solid fa-unlock" style={{color: '#f3da35'}} />
Vue
<font-awesome-icon icon="fa-solid fa-unlock" :style="{color: '#f3da35'}" />
How to add Font Awesome unlock Icon ?
Font Awesome Icon fa fa unlock 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 unlock
<!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-unlock'></i>
</body>
</html>
Tags
access,open,key,entrance
Change Font Awesome Icon Unlock 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-unlock blue-color'></i>
<i class='fa fa-unlock green-color'></i>
<i class='fa fa-unlock teal-color'></i>
<i class='fa fa-unlock yellow-color'></i>
<i class='fa fa-unlock 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'>
Unlock Icon Font Awesome - FAQs
⭐What is the Font Awesome Unlock Icon code?Icon Code is - fa fa-unlock.
⭐ What does the fa fa-unlock Icon mean?fa fa-unlock is the Icon code of Font Awesome Unlock.
⭐ Can we add fa fa-unlock Icon in different sizes?Yes, you can Icon of fa fa-unlock in various pixels.
⭐ How to add a Blue color Font Awesome Unlock Icon?Add the blue color Unlock icon of the font awesome by using code: fa fa-unlock style='color: blue;'.
⭐ How to make white color icon of a Font Awesome Unlock?To change the Unlock icon to white color use code: fa fa-unlock style='color: white;'.
Advertisements
Advertisements