Font Awesome Child Icon (Youth, Adult hood, Children)

Font Awesome Child Icon used to represents a boy or girl who has not yet become an adult and it is also known as "fa-Child". If you want to edit or customize this child icon, utilize the 'Try It' editor to change its color, size, and animation.

Fontawesome Version 4.X

child

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

child

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

child

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

child

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

child

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


Fontawesome Version 5.X

child

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

child

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

child

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

child

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

child

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

Fontawesome Version 6.X

child

Web

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

React

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

Vue

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

child

Web

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

React

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

Vue

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

child

Web

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

React

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

Vue

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

child

Web

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

React

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

Vue

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

child

Web

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

React

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

Vue

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

How to add Font Awesome child Icon ?

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

HTML Code

Get complete html code for icon child

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

Tags

youth,adult hood,children

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

Child Icon Font Awesome - FAQs

⭐What is the Font Awesome Child Icon code?

Icon Code is - fa fa-child.

⭐ What does the fa fa-child Icon mean?

fa fa-child is the Icon code of Font Awesome Child.

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

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

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

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

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

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

Advertisements



Advertisements



Looking For More Icons?