Open In App

Semantic-UI Icon Set Accessibility

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. It provides the users with various icons that can be used for different purposes with a beautiful user interface. In this article let us see about the Icon set of accessibility. Semantic UI provides some most commonly used icon classes for design which were mostly used in the editors and here are the classes. An icon is a glyph used to represent something else and it can represent accessibility standards.

Semantic-UI Icon Set Accessibility classes:



Syntax:

<i class="blind icon"></i>

Note: You can change the class name from the above class list.



Example 1: This code demonstrates all accessibility 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 Accessibility
        </strong><br /><br />
  
        <div class=" ui container">
            <div class="ui grid">
                <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="audio description icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="blind icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="braille icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="closed captioning icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="closed captioning outline icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="deaf icon"></i>
                </div>
                <div class="three wide column">
                    <i class="low vision icon"></i>
                </div>
  
                <div class="three wide column">
                    <i class="phone volume icon"></i>
                </div>
            </div>
        </div>
    </center>
</body>
  
</html>

Output :

Example 2: This code demonstrates all accessibility 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 Accessibility </strong>
    <br/>
    <br/>
  
    <div class="ui container">
      <button class="ui button">
          <i class="question circle icon"></i>
      </button>
  
      <button class="ui button">
          <i class="question circle outline icon"></i>
      </button>
  
      <button class="ui button">
          <i class="sign language icon"></i>
      </button>
  
      <button class="ui button">
          <i class="tty icon"></i>
      </button>
    </div>
  </center>
</body>
  
</html>

Output:

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


Article Tags :