user-md
Font Awesome User-md Icon
Usage
<i class="fa fa-user-md"></i>
Out of the box
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
- </head>
- <body>
- <i class="fa fa-user-md"></i>
- </body>
- </html>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<i class="fa fa-user-md"></i>
</body>
</html>
Large Icon
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
- </head>
- <body>
- <i class="fa fa-user-md fa-5x"></i>
-
- </body>
- </html>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<i class="fa fa-user-md fa-5x"></i>
<!--use the fa-lg (33% increase), fa-2x, fa-3x, fa-4x, or fa-5x classes-->
</body>
</html>
Change color
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
- <style type="text/css">
- .fa_custom {
- color: #0099CC
- }
- </style>
- </head>
- <body>
- <i class="fa fa-user-md fa_custom"></i>
- <i class="fa fa-user-md fa_custom fa-2x"></i>
- <i class="fa fa-user-md fa_custom fa-3x"></i>
- <i class="fa fa-user-md fa_custom fa-4x"></i>
- </body>
- </html>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<style type="text/css">
.fa_custom {
color: #0099CC
}
</style>
</head>
<body>
<i class="fa fa-user-md fa_custom"></i>
<i class="fa fa-user-md fa_custom fa-2x"></i>
<i class="fa fa-user-md fa_custom fa-3x"></i>
<i class="fa fa-user-md fa_custom fa-4x"></i>
</body>
</html>