Font Awesome Play Icon (Video, Media, AV)

Font Awesome's play icon, which is used to indicate a video or audio player, can be represented by different classes depending on the version. For version 4, it is represented by the class 'fa fa-play,' for version 5, 'fas fa-play,' and for version 6, 'fa-solid fa-play.' This icon refers to a performance by actors in theater, television, or radio.

Fontawesome Version 4.X

play

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

play

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

play

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

play

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

play

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


Fontawesome Version 5.X

play

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

play

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

play

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

play

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

play

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

Fontawesome Version 6.X

play

Web

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

React

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

Vue

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

play

Web

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

React

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

Vue

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

play

Web

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

React

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

Vue

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

play

Web

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

React

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

Vue

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

play

Web

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

React

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

Vue

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

How to add Font Awesome play Icon ?

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

HTML Code

Get complete html code for icon play

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

Tags

comedy,drama,hit,musical,opera,performance,show,entertainment,flop,theatrical,curtain-raiser,stage show,video,media,av,theater,television,radio

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

Play Icon Font Awesome - FAQs

⭐What is the Font Awesome Play Icon code?

Icon Code is - fa fa-play.

⭐ What does the fa fa-play Icon mean?

fa fa-play is the Icon code of Font Awesome Play.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?