Dev font awesome icon Usage,CSS Class Name,SVG & CSS Content Code
Dev font awesome icon css class name is fa-dev and CSS Content Code is \f6cc.
Dev font awesome icon is part of brands icons.
Dev font awesome icon usage
We can display Dev font awesome icon using 3 different ways depending upon our requirement.
Using CSS Class Name
Using CSS Content Code
Using SVG
Dev font awesome icon CSS class name
To display Dev font awesome icon, add predefined class name i.e.,fa-dev (with prefix fa-) to the i tag.
And we need to add corresponding font awesome icon style for the Dev icon.
Dev icon has 1 icon style i.e.,brands.
We need to append icon style class fab.
<i class='fab fa-dev'></i>
Output:
Dev font awesome icon CSS Content Code
We can display Dev font awesome icon using it’s CSS Content Code \f6cc
Use the following HTML code
<li><span class='Dev fontawesomeicon'></span>Dev</li>
Apply CSS code
<style>
.fontawesomeicon::before {
display: inline-block;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
.Dev::before {
font: var(--fa-font-brands);
content: ' \f6cc';
}</style>
Output:
.fontawesomeicon::before { display: inline-block; text-rendering: auto; -webkit-font-smoothing: antialiased; } .Dev::before { font: var(--fa-font-brands); content: ' \f6cc'; }For the detailed tutorial visit https://www.angularjswiki.com/fontawesome/csscontentcode/
Dev font awesome icon SVG
Use the following icon SVG to display Dev font awesome icon.
<svg class='fontawesomesvg' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 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="M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z"/></svg>
Use the following HTML code
<p>This <svg class='fontawesomesvg' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 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="M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z"/></svg>
Dev 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 Dev displayed using SVG
Change Dev font awesome icon size
To increase Dev font awesome icon size, use the fa-lg(33 % increase), fa-2x, fa-3x, fa-4x, or fa-5x classes along with icon class \f6cc.
Increase in icon size will be relative to their parent container.
<i class='fab fa-dev fa-lg'>fa-lg</i><br/>
<i class='fab fa-dev fa-2x'>fa-2x</i><br/>
<i class='fab fa-dev fa-3x'>fa-3x</i><br/>
<i class='fab fa-dev fa-4x'>fa-4x</i><br/>
<i class='fab fa-dev fa-5x'>fa-5x</i><br/>
Output:
fa-lgfa-2x
fa-3x
fa-4x
fa-5x
Dev font awesome icon with Fixed Width
All the font awesome icons does not have same width.
For example Dev 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-dev fa-fw fa-3x'></i>Fixed Width<i style='border:1px solid;' class='fab fa-dev 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
Dev font awesome icon Border
To add border to Dev font awesome icon, use fa-border class.
<i class='fab fa-dev fa-border fa-3x'></i>
Output:
Pull Dev font awesome icon To the left
To pull Dev icon to the left of the container use fa-pull-left class.
<div style='width: 200px;'>
<i class='fab fa-dev fa-pull-left fa-3x'></i>
... The text after Dev Icon will be displayed on the right side of the icon.
</div>
<div style = 'clear: both;'></div>
Output:
Pull Dev font awesome icon To the left
To pull Dev icon to the right of the container use fa-pull-right class.
<div style='width: 200px;'>
<i class='fab fa-dev fa-pull-right fa-3x'></i>
... The text after Dev Icon will be displayed on the left side of the icon.
</div>
<div style = 'clear: both;'></div>
Output:
Animate Dev font awesome icon
To animate Dev font awesome icon, use fa-spin class.
<i class='fab fa-dev fa-spin fa-3x'></i>
Output:
Animate Dev font awesome icon with steps
While animating the font awesome icon,We can rotate Dev icon in 8 steps instead of uniform rotation.
We can use fa-pulse icon along with fa-spin class.
<i class='fab fa-dev fa-spin fa-pulse fa-3x'></i>
Output:
Rotate Dev font awesome icon
To rotate Dev font awesome icon, Use fa-rotate-x class
Where ‘x’ represents degree of rotation.
<div>
<i class='fab fa-dev fa-3x'>R</i>normal<br/><br/>
<i class='fab fa-dev fa-rotate-90 fa-3x'>R</i> fa-rotate-90<br/><br/>
<i class='fab fa-dev fa-rotate-180 fa-3x'>R</i> fa-rotate-180<br/><br/>
<i class='fab fa-dev 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 Dev font awesome icon
To flip Dev font awesome icon horizontally and vertically use fa-flip-horizontal and fa-flip-vertical classes.
<div>
<i class='fab fa-dev fa-3x'>F</i> Normal <br>
<i class='fab fa-dev fa-flip-horizontal fa-3x'>F</i> fa-flip-horizontal<br>
<i class='fab fa-dev fa-flip-vertical fa-3x'>F</i> fa-flip-vertical<br>
</div>
Output:
F fa-flip-horizontal
F fa-flip-vertical
Combine Dev 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 Dev 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-dev fa-stack-1x'></i>
</span>
Dev on fa-square<br>
<span class='fa-stack fa-lg'>
<i class='fas fa-circle fa-stack-2x'></i>
<i class='fab fa-dev fa-stack-1x fa-inverse'></i>
</span>
Dev on fa-circle<br>
<span class='fa-stack fa-lg'>
<i class='fab fa-dev fa-stack-1x'></i>
<i class='fas fa-ban fa-stack-2x'></i>
</span>
Dev on fa-ban
</div>
Output:
Dev on fa-circle
Dev on fa-ban