Internet-Explorer font awesome icon Usage,CSS Class Name,SVG & CSS Content Code
Internet-Explorer
font awesome icon css class name is fa-internet-explorer
and CSS Content Code is \f26b
.
Internet-Explorer
font awesome icon is part of brands icons.
Internet-Explorer
font awesome icon usage
We can display Internet-Explorer
font awesome icon using 3 different ways depending upon our requirement.
Using CSS Class Name
Using CSS Content Code
Using SVG
Internet-Explorer
font awesome icon CSS class name
To display Internet-Explorer
font awesome icon, add predefined class name i.e.,fa-internet-explorer
(with prefix fa-
) to the i
tag.
And we need to add corresponding font awesome icon style for the Internet-Explorer
icon.
Internet-Explorer
icon has 1 icon style i.e.,brands.
We need to append icon style class fab
.
<i class='fab fa-internet-explorer'></i>
Output:
Internet-Explorer
font awesome icon CSS Content Code
We can display Internet-Explorer
font awesome icon using it’s CSS Content Code \f26b
Use the following HTML code
<li><span class='Internet-Explorer fontawesomeicon'></span>Internet-Explorer</li>
Apply CSS code
<style>
.fontawesomeicon::before {
display: inline-block;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
.Internet-Explorer::before {
font: var(--fa-font-brands);
content: ' \f26b';
}</style>
Output:
.fontawesomeicon::before { display: inline-block; text-rendering: auto; -webkit-font-smoothing: antialiased; } .Internet-Explorer::before { font: var(--fa-font-brands); content: ' \f26b'; }For the detailed tutorial visit https://www.angularjswiki.com/fontawesome/csscontentcode/
Internet-Explorer
font awesome icon SVG
Use the following icon SVG to display Internet-Explorer
font awesome icon.
<svg class='fontawesomesvg' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"/></svg>
Use the following HTML code
<p>This <svg class='fontawesomesvg' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"/></svg>
Internet-Explorer displayed using SVG</p>
Apply CSS code
<style>
.fontawesomesvg {width: 1em;
height: 1em;
vertical-align: -.125em;
}
</style>
Output:
.fontawesomesvg {width: 1em; height: 1em; vertical-align: -.125em; }This Internet-Explorer displayed using SVG
Change Internet-Explorer
font awesome icon size
To increase Internet-Explorer
font awesome icon size, use the fa-lg(33 % increase)
, fa-2x
, fa-3x
, fa-4x
, or fa-5x
classes along with icon class \f26b.
Increase in icon size will be relative to their parent container.
<i class='fab fa-internet-explorer fa-lg'>fa-lg</i><br/>
<i class='fab fa-internet-explorer fa-2x'>fa-2x</i><br/>
<i class='fab fa-internet-explorer fa-3x'>fa-3x</i><br/>
<i class='fab fa-internet-explorer fa-4x'>fa-4x</i><br/>
<i class='fab fa-internet-explorer fa-5x'>fa-5x</i><br/>
Output:
fa-lgfa-2x
fa-3x
fa-4x
fa-5x
Internet-Explorer
font awesome icon with Fixed Width
All the font awesome icons does not have same width.
For example Internet-Explorer
icon and home
icon may not have same height and width.
So to display two icons with fixed width and height we can use fa-fw
class.
<i style='border:1px solid;' class='fab fa-internet-explorer fa-fw fa-3x'></i>Fixed Width<i style='border:1px solid;' class='fab fa-internet-explorer fa-3x'></i>Normal<br/>
<i style='border:1px solid;' class='fas fa-home fa-fw fa-3x'></i>Fixed Width<i style='border:1px solid;' class='fas fa-home fa-3x'></i>Normal<br/>
Output:
Fixed WidthNormalFixed WidthNormal
Internet-Explorer
font awesome icon Border
To add border to Internet-Explorer
font awesome icon, use fa-border
class.
<i class='fab fa-internet-explorer fa-border fa-3x'></i>
Output:
Pull Internet-Explorer
font awesome icon To the left
To pull Internet-Explorer
icon to the left of the container use fa-pull-left
class.
<div style='width: 200px;'>
<i class='fab fa-internet-explorer fa-pull-left fa-3x'></i>
... The text after Internet-Explorer Icon will be displayed on the right side of the icon.
</div>
<div style = 'clear: both;'></div>
Output:
Pull Internet-Explorer
font awesome icon To the left
To pull Internet-Explorer
icon to the right of the container use fa-pull-right
class.
<div style='width: 200px;'>
<i class='fab fa-internet-explorer fa-pull-right fa-3x'></i>
... The text after Internet-Explorer Icon will be displayed on the left side of the icon.
</div>
<div style = 'clear: both;'></div>
Output:
Animate Internet-Explorer
font awesome icon
To animate Internet-Explorer
font awesome icon, use fa-spin
class.
<i class='fab fa-internet-explorer fa-spin fa-3x'></i>
Output:
Animate Internet-Explorer
font awesome icon with steps
While animating the font awesome icon,We can rotate Internet-Explorer
icon in 8 steps instead of uniform rotation.
We can use fa-pulse
icon along with fa-spin
class.
<i class='fab fa-internet-explorer fa-spin fa-pulse fa-3x'></i>
Output:
Rotate Internet-Explorer
font awesome icon
To rotate Internet-Explorer
font awesome icon, Use fa-rotate-x
class
Where ‘x’ represents degree of rotation.
<div>
<i class='fab fa-internet-explorer fa-3x'>R</i>normal<br/><br/>
<i class='fab fa-internet-explorer fa-rotate-90 fa-3x'>R</i> fa-rotate-90<br/><br/>
<i class='fab fa-internet-explorer fa-rotate-180 fa-3x'>R</i> fa-rotate-180<br/><br/>
<i class='fab fa-internet-explorer fa-rotate-270 fa-3x'>R</i> fa-rotate-270<br/><br/>
</div>
Output:
R fa-rotate-90
R fa-rotate-180
R fa-rotate-270
Flip Internet-Explorer
font awesome icon
To flip Internet-Explorer
font awesome icon horizontally and vertically use fa-flip-horizontal
and fa-flip-vertical
classes.
<div>
<i class='fab fa-internet-explorer fa-3x'>F</i> Normal <br>
<i class='fab fa-internet-explorer fa-flip-horizontal fa-3x'>F</i> fa-flip-horizontal<br>
<i class='fab fa-internet-explorer fa-flip-vertical fa-3x'>F</i> fa-flip-vertical<br>
</div>
Output:
F fa-flip-horizontal
F fa-flip-vertical
Combine Internet-Explorer
font awesome icon with other font awesome icons
In font awesome icons,using stacking we can combine multiple icons and display it as one icon.
To do that use the fa-stack
class on the parent, the fa-stack-1x
for the regularly sized icon, and fa-stack-2x
for the larger icon.
And use class fa-inverse
for an alternative icon color.
In the below example, I am displaying Internet-Explorer
font awesome icon on top of icons like fa-square
,fa-circle
and fa-ban
.
And used fa-inverse
in the second example to invert the color of the icon.
<div>
<span class='fa-stack fa-lg'>
<i class='far fa-square fa-stack-2x'></i>
<i class='fab fa-internet-explorer fa-stack-1x'></i>
</span>
Internet-Explorer on fa-square<br>
<span class='fa-stack fa-lg'>
<i class='fas fa-circle fa-stack-2x'></i>
<i class='fab fa-internet-explorer fa-stack-1x fa-inverse'></i>
</span>
Internet-Explorer on fa-circle<br>
<span class='fa-stack fa-lg'>
<i class='fab fa-internet-explorer fa-stack-1x'></i>
<i class='fas fa-ban fa-stack-2x'></i>
</span>
Internet-Explorer on fa-ban
</div>
Output:
Internet-Explorer on fa-circle
Internet-Explorer on fa-ban