Open In App

Semantic-UI Icon Set Communication

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 different 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 communication. Semantic UI provides some most commonly used icon classes for design which were mostly used in the editors. An icon is a glyph used to represent something else and icons represent common ways of communication.

Semantic UI Icon set classes:



Syntax:

<i class="icon.... address book"></i>

Note: The developer can use the above classes as per the need using the above syntax.

Example 1: This code demonstrates all communication icon set classes.




<!DOCTYPE html>
<html>
  
<head>
    <link href=
         rel="stylesheet" />    
</head>
  
<body>
    <center>
        <h1 class="ui green header">GeeksforGeeks</h1>
        <strong>Semantic-UI Icon Set Communication</strong>
        <br/>
  
        <div class="ui container">
            <div class="ui grid">
                <div class="three wide column">
                    <i class="address book icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="address book outline icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="address card icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="address card outline icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="american sign language interpreting icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="assistive listening systems icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="at icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="bell icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="bell outline icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="bell slash icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="bell slash outline icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="bullhorn icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="comment icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="comment outline icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="comment alternate icon"></i>
                </div>
            </div>
       </div
    </center>
</body>
</html>

Output:

Example 2: This code demonstrates all communication icon set classes.




<!DOCTYPE html>
<html>
  
<head>
    <link href=
        rel="stylesheet" />    
</head>
  
<body>
    <center>
        <h1 class="ui green header">Geeksforgeeks</h1>
        <strong>Semantic UI Icon Set Communication</strong>
        <br />
        <br />
        <div class="ui container">
            <button class="ui button">
                <i class="comment alternate outline icon"></i>
            </button>
            <button class="ui button">
                <i class="comments icon"></i>
            </button>
            <button class="ui button">
                <i class="comments outline icon"></i>
            </button>
            <button class="ui button">
                <i class="envelope icon"></i>
            </button>
        </div>
    </center>
</body>
</html>

Output:

Reference: https://semantic-ui.com/elements/icon.html#communication


Article Tags :