Open In App

Semantic-UI Icon Set Images

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 Images. The Semantic UI provides some most commonly used icon classes for Images for video editing apps or cameras and here are the classes.



Semantic UI Icon Set Images Classes:

Syntax:



<i class="icon.... images-class"></i>

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




<!DOCTYPE html>
<html>
 
<head>
    <title>Semantic-UI Icon Set Images</title>
    <link rel="stylesheet"
          href=
    <script src=
    </script>
    <script src=
    </script>
</head>
 
<body>
    <center>
        <h1 class="ui green header">
          GeeksforGeeks
        </h1>
        <strong>
            Semantic-UI Icon Set Images
        </strong>
        <br />
        <br />
 
        <div class=" ui container">
 
            <div class="ui grid">
                <div class="three wide column">
                    <i class="icon big  adjust "></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big bolt "></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big camera"></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big camera retro"></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big  clone"></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big clone outline"></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big compress "></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big expand"></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big eye"></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big eye dropper"></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big eye slash "></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big  eye slash outline"></i>
                </div>
 
                <div class="three wide column">
                    <i class="icon big  file image"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big  file image outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big  film"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big  id badge"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big  id badge outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big  id card"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big  id card outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big  image"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big  image outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big images"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big images outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big sliders horizontal"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big tint"></i>
                </div>
            </div>
        </div>
    </center>
</body>
 
</html>

Output:

Semantic-UI Icon Set Images

Example 2: This code demonstrates the images icon set classes.




<!DOCTYPE html>
<html>
 
<head>
    <title>Semantic-UI Icon Set Images</title>
    <link rel="stylesheet"
          href=
    <script src=
    </script>
    <script src=
    </script>
</head>
 
<body>
    <center>
        <h1 class="ui green header">
          GeeksforGeeks
        </h1>
        <strong>
            Semantic-UI Icon Set Images
        </strong>
        <br />
        <br />
 
        <div class=" ui container">
            <div class="ui icon black buttons">
                <button class="ui button">
                    <i class="camera icon"></i>
                </button>
                <button class="ui button">
                    <i class="images icon"></i>
                </button>
                <button class="ui button">
                    <i class="clone icon"></i>
                </button>
                <button class="ui button">
                    <i class="expand icon"></i>
                </button>
                <button class="ui button">
                    <i class="compress icon"></i>
                </button>
            </div>
        </div>
    </center>
</body>
 
</html>

Output:

Semantic-UI Icon Set Images

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


Article Tags :