Font Awesome Music Icon (Sound, Song, Tune)

The Font Awesome Music icon, also known as 'fa fa-music,' is used to represent sound, song, and tune. To access this icon, add the class name 'fa fa-music' to the 'i' tag. To edit the color or size of this icon, use the Tryit editor.

Fontawesome Version 4.X

music

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

music

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

music

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

music

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

music

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


Fontawesome Version 5.X

music

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

music

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

music

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

music

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

music

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

Fontawesome Version 6.X

music

Web

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

React

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

Vue

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

music

Web

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

React

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

Vue

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

music

Web

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

React

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

Vue

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

music

Web

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

React

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

Vue

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

music

Web

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

React

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

Vue

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

How to add Font Awesome music Icon ?

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

HTML Code

Get complete html code for icon music

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

Tags

Song,Tune,Sound,Rhythm,Playlist,Instrument,Audio

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

Music Icon Font Awesome - FAQs

⭐What is the Font Awesome Music Icon code?

Icon Code is - fa fa-music.

⭐ What does the fa fa-music Icon mean?

fa fa-music is the Icon code of Font Awesome Music.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?