Search Results
Font Awesome Child Icon (Youth, Adult hood, Children)
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>
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>
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'}" />
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.
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-
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
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