Font Awesome Angle Down Icon

'Font Awesome Angle Down' is a simple arrow pointing downwards. The angle down icon can be used for different purposes, such as indicating a dropdown menu, a collapsible section, or a scrollable area. To use the angle down icon in Font Awesome, you need to add a CSS class to an HTML element, such as 'fa fa-angle-down' for version 4, 'fas fa-angle-down' for version 5, and 'fa-solid fa-angle-down' for version 6.

Fontawesome Version 4.X

angle down

<i class='fa fa-angle-down'></i>

angle down

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

angle down

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

angle down

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

angle down

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


Fontawesome Version 5.X

angle down

<i class='fas fa-angle-down'></i>

angle down

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

angle down

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

angle down

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

angle down

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

Fontawesome Version 6.X

angle down

Web

<i class='fa-solid fa-angle-down'></i>

React

<FontAwesomeIcon icon="fa-solid fa-angle-down" />

Vue

<font-awesome-icon icon="fa-solid fa-angle-down" />

angle down

Web

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

React

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

Vue

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

angle down

Web

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

React

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

Vue

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

angle down

Web

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

React

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

Vue

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

angle down

Web

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

React

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

Vue

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

How to add Font Awesome angle down Icon ?

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

HTML Code

Get complete html code for icon angle down

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

Tags

corner.,edge.,intersection.,slant.,downward ,cascading ,declining ,depressed ,descending ,caret down,dropdown,hidden content

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

Angle Down Icon Font Awesome - FAQs

⭐What is the Font Awesome Angle Down Icon code?

Icon Code is - fa fa-angle-down.

⭐ What does the fa fa-angle-down Icon mean?

fa fa-angle-down is the Icon code of Font Awesome Angle Down.

⭐ Can we add fa fa-angle-down Icon in different sizes?

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

⭐ How to add a Blue color Font Awesome Angle Down Icon?

Add the blue color Angle Down icon of the font awesome by using code: fa fa-angle-down style='color: blue;'.

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

To change the Angle Down icon to white color use code: fa fa-angle-down style='color: white;'.

Advertisements



Advertisements



Looking For More Icons?