Font Awesome Desktop Icon - (Computer, Monitor)

The desktop icon from Font Awesome is used to represent computers, technology, workstations, and desktop applications. It can be referenced "fa-desktop" or "fas fa-desktop".

Fontawesome Version 4.X

desktop

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

desktop

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

desktop

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

desktop

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

desktop

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


Fontawesome Version 5.X

desktop

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

desktop

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

desktop

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

desktop

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

desktop

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

Fontawesome Version 6.X

desktop

Web

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

React

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

Vue

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

desktop

Web

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

React

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

Vue

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

desktop

Web

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

React

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

Vue

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

desktop

Web

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

React

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

Vue

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

desktop

Web

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

React

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

Vue

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

How to add Font Awesome desktop Icon ?

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

HTML Code

Get complete html code for icon desktop

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

Tags

computer,monitor,device

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

Desktop Icon Font Awesome - FAQs

⭐What is the Font Awesome Desktop Icon code?

Icon Code is - fa fa-desktop.

⭐ What does the fa fa-desktop Icon mean?

fa fa-desktop is the Icon code of Font Awesome Desktop.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?