Square-Dribbble font awesome icon Usage,CSS Class Name,SVG & CSS Content Code
Square-Dribbble font awesome icon css class name is fa-square-dribbble and CSS Content Code is \f397.
Square-Dribbble font awesome icon is part of brands icons.
Square-Dribbble font awesome icon usage
We can display Square-Dribbble font awesome icon using 3 different ways depending upon our requirement.
Using CSS Class Name
Using CSS Content Code
Using SVG
Square-Dribbble font awesome icon CSS class name
To display Square-Dribbble font awesome icon, add predefined class name i.e.,fa-square-dribbble (with prefix fa-) to the i tag.
And we need to add corresponding font awesome icon style for the Square-Dribbble icon.
Square-Dribbble icon has 1 icon style i.e.,brands.
We need to append icon style class fab.
<i class='fab fa-square-dribbble'></i>
Output:
Square-Dribbble font awesome icon CSS Content Code
We can display Square-Dribbble font awesome icon using it’s CSS Content Code \f397
Use the following HTML code
<li><span class='Square-Dribbble fontawesomeicon'></span>Square-Dribbble</li>
Apply CSS code
<style>
.fontawesomeicon::before {
display: inline-block;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
.Square-Dribbble::before {
font: var(--fa-font-brands);
content: ' \f397';
}</style>
Output:
For the detailed tutorial visit https://www.angularjswiki.com/fontawesome/csscontentcode/
Square-Dribbble font awesome icon SVG
Use the following icon SVG to display Square-Dribbble 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="M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"/></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="M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"/></svg>
Square-Dribbble displayed using SVG</p>
Apply CSS code
<style>
.fontawesomesvg {width: 1em;
height: 1em;
vertical-align: -.125em;
}
</style>
Output:
This Square-Dribbble displayed using SVG
Change Square-Dribbble font awesome icon size
To increase Square-Dribbble font awesome icon size, use the fa-lg(33 % increase), fa-2x, fa-3x, fa-4x, or fa-5x classes along with icon class \f397.
Increase in icon size will be relative to their parent container.
<i class='fab fa-square-dribbble fa-lg'>fa-lg</i><br/>
<i class='fab fa-square-dribbble fa-2x'>fa-2x</i><br/>
<i class='fab fa-square-dribbble fa-3x'>fa-3x</i><br/>
<i class='fab fa-square-dribbble fa-4x'>fa-4x</i><br/>
<i class='fab fa-square-dribbble fa-5x'>fa-5x</i><br/>
Output:
fa-lgfa-2x
fa-3x
fa-4x
fa-5x
Square-Dribbble font awesome icon with Fixed Width
All the font awesome icons does not have same width.
For example Square-Dribbble 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-square-dribbble fa-fw fa-3x'></i>Fixed Width<i style='border:1px solid;' class='fab fa-square-dribbble 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
Square-Dribbble font awesome icon Border
To add border to Square-Dribbble font awesome icon, use fa-border class.
<i class='fab fa-square-dribbble fa-border fa-3x'></i>
Output:
Pull Square-Dribbble font awesome icon To the left
To pull Square-Dribbble icon to the left of the container use fa-pull-left class.
<div style='width: 200px;'>
<i class='fab fa-square-dribbble fa-pull-left fa-3x'></i>
... The text after Square-Dribbble Icon will be displayed on the right side of the icon.
</div>
<div style = 'clear: both;'></div>
Output:
Pull Square-Dribbble font awesome icon To the left
To pull Square-Dribbble icon to the right of the container use fa-pull-right class.
<div style='width: 200px;'>
<i class='fab fa-square-dribbble fa-pull-right fa-3x'></i>
... The text after Square-Dribbble Icon will be displayed on the left side of the icon.
</div>
<div style = 'clear: both;'></div>
Output:
Animate Square-Dribbble font awesome icon
To animate Square-Dribbble font awesome icon, use fa-spin class.
<i class='fab fa-square-dribbble fa-spin fa-3x'></i>
Output:
Animate Square-Dribbble font awesome icon with steps
While animating the font awesome icon,We can rotate Square-Dribbble icon in 8 steps instead of uniform rotation.
We can use fa-pulse icon along with fa-spin class.
<i class='fab fa-square-dribbble fa-spin fa-pulse fa-3x'></i>
Output:
Rotate Square-Dribbble font awesome icon
To rotate Square-Dribbble font awesome icon, Use fa-rotate-x class
Where ‘x’ represents degree of rotation.
<div>
<i class='fab fa-square-dribbble fa-3x'>R</i>normal<br/><br/>
<i class='fab fa-square-dribbble fa-rotate-90 fa-3x'>R</i> fa-rotate-90<br/><br/>
<i class='fab fa-square-dribbble fa-rotate-180 fa-3x'>R</i> fa-rotate-180<br/><br/>
<i class='fab fa-square-dribbble 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 Square-Dribbble font awesome icon
To flip Square-Dribbble font awesome icon horizontally and vertically use fa-flip-horizontal and fa-flip-vertical classes.
<div>
<i class='fab fa-square-dribbble fa-3x'>F</i> Normal <br>
<i class='fab fa-square-dribbble fa-flip-horizontal fa-3x'>F</i> fa-flip-horizontal<br>
<i class='fab fa-square-dribbble fa-flip-vertical fa-3x'>F</i> fa-flip-vertical<br>
</div>
Output:
F fa-flip-horizontal
F fa-flip-vertical
Combine Square-Dribbble 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 Square-Dribbble 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-square-dribbble fa-stack-1x'></i>
</span>
Square-Dribbble on fa-square<br>
<span class='fa-stack fa-lg'>
<i class='fas fa-circle fa-stack-2x'></i>
<i class='fab fa-square-dribbble fa-stack-1x fa-inverse'></i>
</span>
Square-Dribbble on fa-circle<br>
<span class='fa-stack fa-lg'>
<i class='fab fa-square-dribbble fa-stack-1x'></i>
<i class='fas fa-ban fa-stack-2x'></i>
</span>
Square-Dribbble on fa-ban
</div>
Output:
Square-Dribbble on fa-circle
Square-Dribbble on fa-ban
