Octopus-Deploy font awesome icon Usage,CSS Class Name,SVG & CSS Content Code

Octopus-Deploy font awesome icon css class name is fa-octopus-deploy and CSS Content Code is \e082.

Octopus-Deploy font awesome icon is part of brands icons.

Octopus-Deploy font awesome icon usage

We can display Octopus-Deploy font awesome icon using 3 different ways depending upon our requirement.

  1. Using CSS Class Name

  2. Using CSS Content Code

  3. Using SVG

Octopus-Deploy font awesome icon CSS class name

To display Octopus-Deploy font awesome icon, add predefined class name i.e.,fa-octopus-deploy (with prefix fa-) to the i tag.

And we need to add corresponding font awesome icon style for the Octopus-Deploy icon.

Octopus-Deploy icon has 1 icon style i.e.,brands. We need to append icon style class fab.

<i class='fab fa-octopus-deploy'></i>

Output:

Octopus-Deploy font awesome icon CSS Content Code

We can display Octopus-Deploy font awesome icon using it’s CSS Content Code \e082

Use the following HTML code

<li><span class='Octopus-Deploy fontawesomeicon'></span>Octopus-Deploy</li>

Apply CSS code

<style> 
.fontawesomeicon::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
 }

.Octopus-Deploy::before {
   font: var(--fa-font-brands);
    content: ' \e082';
 }</style>

Output:

  • Octopus-Deploy
  • For the detailed tutorial visit https://www.angularjswiki.com/fontawesome/csscontentcode/

    Octopus-Deploy font awesome icon SVG

    Use the following icon SVG to display Octopus-Deploy 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="M455.6,349.2c-45.891-39.09-36.67-77.877-16.095-128.11C475.16,134.04,415.967,34.14,329.93,8.3,237.04-19.6,134.252,24.341,99.677,117.147a180.862,180.862,0,0,0-10.988,73.544c1.733,29.543,14.717,52.97,24.09,80.3,17.2,50.161-28.1,92.743-66.662,117.582-46.806,30.2-36.319,39.857-8.428,41.858,23.378,1.68,44.478-4.548,65.265-15.045,9.2-4.647,40.687-18.931,45.13-28.588C135.9,413.388,111.122,459.5,126.621,488.9c19.1,36.229,67.112-31.77,76.709-45.812,8.591-12.572,42.963-81.279,63.627-46.926,18.865,31.361,8.6,76.391,35.738,104.622,32.854,34.2,51.155-18.312,51.412-44.221.163-16.411-6.1-95.852,29.9-59.944C405.428,418,436.912,467.8,472.568,463.642c38.736-4.516-22.123-67.967-28.262-78.695,5.393,4.279,53.665,34.128,53.818,9.52C498.234,375.678,468.039,359.8,455.6,349.2Z"/></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="M455.6,349.2c-45.891-39.09-36.67-77.877-16.095-128.11C475.16,134.04,415.967,34.14,329.93,8.3,237.04-19.6,134.252,24.341,99.677,117.147a180.862,180.862,0,0,0-10.988,73.544c1.733,29.543,14.717,52.97,24.09,80.3,17.2,50.161-28.1,92.743-66.662,117.582-46.806,30.2-36.319,39.857-8.428,41.858,23.378,1.68,44.478-4.548,65.265-15.045,9.2-4.647,40.687-18.931,45.13-28.588C135.9,413.388,111.122,459.5,126.621,488.9c19.1,36.229,67.112-31.77,76.709-45.812,8.591-12.572,42.963-81.279,63.627-46.926,18.865,31.361,8.6,76.391,35.738,104.622,32.854,34.2,51.155-18.312,51.412-44.221.163-16.411-6.1-95.852,29.9-59.944C405.428,418,436.912,467.8,472.568,463.642c38.736-4.516-22.123-67.967-28.262-78.695,5.393,4.279,53.665,34.128,53.818,9.52C498.234,375.678,468.039,359.8,455.6,349.2Z"/></svg>
     Octopus-Deploy displayed using SVG</p>
    

    Apply CSS code

    
      <style>
        .fontawesomesvg {width: 1em;
          height: 1em;
          vertical-align: -.125em;
        }
      </style>
    
    

    Output:

    This Octopus-Deploy displayed using SVG

    Change Octopus-Deploy font awesome icon size

    To increase Octopus-Deploy font awesome icon size, use the fa-lg(33 % increase), fa-2x, fa-3x, fa-4x, or fa-5x classes along with icon class \e082. Increase in icon size will be relative to their parent container.

    <i class='fab fa-octopus-deploy fa-lg'>fa-lg</i><br/>
    <i class='fab fa-octopus-deploy fa-2x'>fa-2x</i><br/>
    <i class='fab fa-octopus-deploy fa-3x'>fa-3x</i><br/>
    <i class='fab fa-octopus-deploy fa-4x'>fa-4x</i><br/>
    <i class='fab fa-octopus-deploy fa-5x'>fa-5x</i><br/>
    
    

    Output:

    fa-lg
    fa-2x
    fa-3x
    fa-4x
    fa-5x

    Octopus-Deploy font awesome icon with Fixed Width

    All the font awesome icons does not have same width.

    For example Octopus-Deploy 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-octopus-deploy fa-fw fa-3x'></i>Fixed Width<i style='border:1px solid;' class='fab fa-octopus-deploy 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 WidthNormal
    Fixed WidthNormal

    Octopus-Deploy font awesome icon Border

    To add border to Octopus-Deploy font awesome icon, use fa-border class.

    <i class='fab fa-octopus-deploy fa-border fa-3x'></i>
    

    Output:

    Pull Octopus-Deploy font awesome icon To the left

    To pull Octopus-Deploy icon to the left of the container use fa-pull-left class.

    <div style='width: 200px;'>
    <i class='fab fa-octopus-deploy fa-pull-left fa-3x'></i>
      ... The text after Octopus-Deploy Icon will be displayed on the right side of the icon.
    </div>
    <div style = 'clear: both;'></div>
    

    Output:

    ... The text after Octopus-Deploy Icon will be displayed on the right side of the icon.

    Pull Octopus-Deploy font awesome icon To the left

    To pull Octopus-Deploy icon to the right of the container use fa-pull-right class.

    <div style='width: 200px;'>
    <i class='fab fa-octopus-deploy fa-pull-right fa-3x'></i>
      ... The text after Octopus-Deploy Icon will be displayed on the left side of the icon.
    </div>
    <div style = 'clear: both;'></div>
    

    Output:

    ... The text after Octopus-Deploy Icon will be displayed on the left side of the icon.

    Animate Octopus-Deploy font awesome icon

    To animate Octopus-Deploy font awesome icon, use fa-spin class.

    <i class='fab fa-octopus-deploy fa-spin fa-3x'></i>
    

    Output:

    Animate Octopus-Deploy font awesome icon with steps

    While animating the font awesome icon,We can rotate Octopus-Deploy icon in 8 steps instead of uniform rotation.

    We can use fa-pulse icon along with fa-spin class.

    <i class='fab fa-octopus-deploy fa-spin fa-pulse fa-3x'></i>
    

    Output:

    Rotate Octopus-Deploy font awesome icon

    To rotate Octopus-Deploy font awesome icon, Use fa-rotate-x class

    Where ‘x’ represents degree of rotation.

    <div>
    <i class='fab fa-octopus-deploy fa-3x'>R</i>normal<br/><br/>
    <i class='fab fa-octopus-deploy fa-rotate-90 fa-3x'>R</i> fa-rotate-90<br/><br/> 
    <i class='fab fa-octopus-deploy fa-rotate-180  fa-3x'>R</i> fa-rotate-180<br/><br/> 
    <i class='fab fa-octopus-deploy fa-rotate-270 fa-3x'>R</i> fa-rotate-270<br/><br/>
    </div>
    

    Output:

    Rnormal

    R fa-rotate-90

    R fa-rotate-180

    R fa-rotate-270

    Flip Octopus-Deploy font awesome icon

    To flip Octopus-Deploy font awesome icon horizontally and vertically use fa-flip-horizontal and fa-flip-vertical classes.

    <div>
    <i class='fab fa-octopus-deploy fa-3x'>F</i> Normal <br>
    <i class='fab fa-octopus-deploy fa-flip-horizontal fa-3x'>F</i> fa-flip-horizontal<br>
    <i class='fab fa-octopus-deploy fa-flip-vertical fa-3x'>F</i> fa-flip-vertical<br>
    </div>
    

    Output:

    F Normal
    F fa-flip-horizontal
    F fa-flip-vertical

    Combine Octopus-Deploy 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 Octopus-Deploy 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-octopus-deploy fa-stack-1x'></i>
        </span>
          Octopus-Deploy on fa-square<br>
        <span class='fa-stack fa-lg'>
            <i class='fas fa-circle fa-stack-2x'></i>
            <i class='fab fa-octopus-deploy fa-stack-1x fa-inverse'></i>
        </span>
          Octopus-Deploy on fa-circle<br>
    
        <span class='fa-stack fa-lg'>
            <i class='fab fa-octopus-deploy fa-stack-1x'></i>
            <i class='fas fa-ban fa-stack-2x'></i>
        </span>
          Octopus-Deploy on fa-ban
    </div>
    

    Output:

    Octopus-Deploy on fa-square
    Octopus-Deploy on fa-circle
    Octopus-Deploy on fa-ban
    Avatar

    Arunkumar Gudelli

    Liked this post? Subscribe