Wodu font awesome icon Usage,CSS Class Name,SVG & CSS Content Code

Wodu font awesome icon css class name is fa-wodu and CSS Content Code is \e088.

Wodu font awesome icon is part of brands icons.

Wodu font awesome icon usage

We can display Wodu font awesome icon using 3 different ways depending upon our requirement.

  1. Using CSS Class Name

  2. Using CSS Content Code

  3. Using SVG

Wodu font awesome icon CSS class name

To display Wodu font awesome icon, add predefined class name i.e.,fa-wodu (with prefix fa-) to the i tag.

And we need to add corresponding font awesome icon style for the Wodu icon.

Wodu icon has 1 icon style i.e.,brands. We need to append icon style class fab.

<i class='fab fa-wodu'></i>

Output:

Wodu font awesome icon CSS Content Code

We can display Wodu font awesome icon using it’s CSS Content Code \e088

Use the following HTML code

<li><span class='Wodu fontawesomeicon'></span>Wodu</li>

Apply CSS code

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

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

Output:

  • Wodu
  • For the detailed tutorial visit https://www.angularjswiki.com/fontawesome/csscontentcode/

    Wodu font awesome icon SVG

    Use the following icon SVG to display Wodu font awesome icon.

    <svg class='fontawesomesvg' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 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="M178.414 339.706H141.1L112.166 223.475h-.478L83.228 339.706H45.2L0 168.946H37.548L64.574 285.177h.478L94.707 168.946h35.157l29.178 117.667h.479L187.5 168.946h36.831zM271.4 212.713c38.984 0 64.1 25.828 64.1 65.291 0 39.222-25.111 65.05-64.1 65.05-38.743 0-63.855-25.828-63.855-65.05C207.547 238.541 232.659 212.713 271.4 212.713zm0 104.753c23.2 0 30.133-19.852 30.133-39.462 0-19.852-6.934-39.7-30.133-39.7-27.7 0-29.894 19.85-29.894 39.7C241.508 297.614 248.443 317.466 271.4 317.466zM435.084 323.922h-.478c-7.893 13.392-21.765 19.132-37.548 19.132-37.31 0-55.485-32.045-55.485-66.246 0-33.243 18.415-64.095 54.767-64.095 14.589 0 28.938 6.218 36.831 18.416h.24V168.946h33.96v170.76H435.084zM405.428 238.3c-22.24 0-29.894 19.134-29.894 39.463 0 19.371 8.848 39.7 29.894 39.7 22.482 0 29.178-19.613 29.178-39.94C434.606 257.436 427.432 238.3 405.428 238.3zM592.96 339.706H560.673V322.487h-.718c-8.609 13.87-23.436 20.567-37.786 20.567-36.113 0-45.2-20.328-45.2-50.941V216.061h33.959V285.9c0 20.329 5.979 30.372 21.765 30.372 18.415 0 26.306-10.283 26.306-35.393V216.061H592.96zM602.453 302.876H640v36.83H602.453z"/></svg>
    
    

    Use the following HTML code

    <p>This <svg class='fontawesomesvg' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 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="M178.414 339.706H141.1L112.166 223.475h-.478L83.228 339.706H45.2L0 168.946H37.548L64.574 285.177h.478L94.707 168.946h35.157l29.178 117.667h.479L187.5 168.946h36.831zM271.4 212.713c38.984 0 64.1 25.828 64.1 65.291 0 39.222-25.111 65.05-64.1 65.05-38.743 0-63.855-25.828-63.855-65.05C207.547 238.541 232.659 212.713 271.4 212.713zm0 104.753c23.2 0 30.133-19.852 30.133-39.462 0-19.852-6.934-39.7-30.133-39.7-27.7 0-29.894 19.85-29.894 39.7C241.508 297.614 248.443 317.466 271.4 317.466zM435.084 323.922h-.478c-7.893 13.392-21.765 19.132-37.548 19.132-37.31 0-55.485-32.045-55.485-66.246 0-33.243 18.415-64.095 54.767-64.095 14.589 0 28.938 6.218 36.831 18.416h.24V168.946h33.96v170.76H435.084zM405.428 238.3c-22.24 0-29.894 19.134-29.894 39.463 0 19.371 8.848 39.7 29.894 39.7 22.482 0 29.178-19.613 29.178-39.94C434.606 257.436 427.432 238.3 405.428 238.3zM592.96 339.706H560.673V322.487h-.718c-8.609 13.87-23.436 20.567-37.786 20.567-36.113 0-45.2-20.328-45.2-50.941V216.061h33.959V285.9c0 20.329 5.979 30.372 21.765 30.372 18.415 0 26.306-10.283 26.306-35.393V216.061H592.96zM602.453 302.876H640v36.83H602.453z"/></svg>
     Wodu displayed using SVG</p>
    

    Apply CSS code

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

    Output:

    This Wodu displayed using SVG

    Change Wodu font awesome icon size

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

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

    Output:

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

    Wodu font awesome icon with Fixed Width

    All the font awesome icons does not have same width.

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

    Wodu font awesome icon Border

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

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

    Output:

    Pull Wodu font awesome icon To the left

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

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

    Output:

    ... The text after Wodu Icon will be displayed on the right side of the icon.

    Pull Wodu font awesome icon To the left

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

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

    Output:

    ... The text after Wodu Icon will be displayed on the left side of the icon.

    Animate Wodu font awesome icon

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

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

    Output:

    Animate Wodu font awesome icon with steps

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

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

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

    Output:

    Rotate Wodu font awesome icon

    To rotate Wodu font awesome icon, Use fa-rotate-x class

    Where ‘x’ represents degree of rotation.

    <div>
    <i class='fab fa-wodu fa-3x'>R</i>normal<br/><br/>
    <i class='fab fa-wodu fa-rotate-90 fa-3x'>R</i> fa-rotate-90<br/><br/> 
    <i class='fab fa-wodu fa-rotate-180  fa-3x'>R</i> fa-rotate-180<br/><br/> 
    <i class='fab fa-wodu 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 Wodu font awesome icon

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

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

    Output:

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

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

    Output:

    Wodu on fa-square
    Wodu on fa-circle
    Wodu on fa-ban
    Avatar

    Arunkumar Gudelli

    Liked this post? Subscribe