Open In App

Semantic-UI Icon Set Hands & Gestures

Semantic UI is an open-source development framework that provides pre-defined classes to make our website look beautiful, amazing, and responsive. It is similar to Bootstrap which has predefined classes. It uses jQuery and CSS to create the interfaces. It can also be directly used via CDN like bootstrap. Semantic UI provides the users with various icons that can be used for different purposes with a beautiful user interface. The icons add more beauty to the website than the textual representation. In this article, let us see about the icon set of hands and gestures. Semantic UI provides some most commonly used icon classes for hands and gestures.

Semantic UI Icon set Hands and Gestures classes:



Syntax:

<i class="icon....hands_and_gesture_class "></i>

Example 1: This code demonstrates all hands and gestures set classes.






<!DOCTYPE html>
<html>
  
<head>
    <link href=
          rel="stylesheet" />
        integrity=
"sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous">
        </script>
    <script src=
    </script>
</head>
  
<body>
    <center>
        <h1 class="ui green header">GeeksforGeeks</h1>
        <strong>
            Semantic-UI Icon Set Hands and Gestures
        </strong>
        <br />
        <br />
  
        <div class="container">
  
            <div class="ui grid">
                <div class="three wide column">
                    <i class="icon big hand lizard"></i>
  
                </div>
                <div class="three wide column">
                    <i class="icon big hand lizard outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand paper"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand paper outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand peace"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand peace outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand point down"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand point down outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand point left"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big hand point left outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big hand point right "></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand point right outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand point up "></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand point up outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand pointer "></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand pointer outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand rock"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big hand rock outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big hand scissors"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big hand scissors outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big hand spock"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big hand spock outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big handshake"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big handshake outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big thumbs down "></i>
                </div>
                <div class="three wide column">
                    <i class="icon big thumbs down outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big thumbs up"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big thumbs up outline "></i>
                </div>
  
            </div>
        </div>
    </center>
</body>
  
</html>

Output:

Example 2: This code demonstrates an example of Hands and Gestures icon set classes.




<!DOCTYPE html>
<html>
  
<head>
    <link href=
          rel="stylesheet" />
        integrity=
"sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous">
        </script>
    <script src=
    </script>
</head>
  
<body>
    <center>
        <h1 class="ui green header">GeeksforGeeks</h1>
        <strong>
            Semantic-UI Icon Set Hands and Gestures
        </strong>
        <br />
        <br />
  
        <div class="container">
  
            <div class="ui labeled button" tabindex="0">
                <div class="ui button">
                  <i class="thumbs up icon"></i> Like
                </div>
                <a class="ui basic label">
                  157
                </a>
              </div>
              <div class="ui labeled button" tabindex="0">
                <div class="ui button">
                  <i class="thumbs down icon"></i> Like
                </div>
                <a class="ui basic label">
                 34
                </a>
              </div>
        </div>
    </center>
</body>
  
</html>

Output:

Reference: https://semantic-ui.com/elements/icon.html#hands–gestures


Article Tags :