Open In App

Semantic-UI Icon Set Payments & Shopping

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 Payments and Shopping.
Semantic UI provides some most commonly used icon classes for Payments and Shopping for e-commerce or ed-tech apps and here are the classes.



Semantic UI Icon set Payments and Shopping classes:

Syntax:



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

Example 1: This code demonstrates the all shopping and payments 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 Payments and Shopping
        </strong>
        <br />
        <br />
  
        <div class=" ui container">
  
            <div class="ui grid">
                <div class="three wide column">
                    <i class="icon big bell"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big bell outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big bookmark"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big bookmark outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big bullhorn"></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 cart arrow down"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big cart plus "></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big credit card "></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big credit card outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big gem  "></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big gem outline"></i>
                </div>
  
                <div class="three wide column">
                    <i class="icon big gift"></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 heart"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big heart outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big key"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big shopping bag "></i>
                </div>
                <div class="three wide column">
                    <i class="icon big shopping basket"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big shopping cart"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big star "></i>
                </div>
                <div class="three wide column">
                    <i class="icon big star outline"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big tag"></i>
                </div>
                <div class="three wide column">
                    <i class="icon big tags"></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 class="three wide column">
                    <i class="icon big trophy"></i>
                </div>
            </div>
        </div>
    </center>
</body>
  
</html>

Output:

Example 2: This code demonstrates the use of the shopping and payments icon set.




<!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 Shopping and Payments</strong>
        <br />
        <br />
        <div class="ui container">
  
            <button class="ui button">
                <i class="shopping cart icon"></i>
                Shop
            </button>
            <button class="ui button">
                <i class="bullhorn icon"></i>
                Notifications
            </button>
            <button class="ui button">
                <i class="bookmark icon"></i>
                Bookmark item
            </button>
            <button class="ui button">
                <i class="  heart icon"></i>
                Give Feedback
            </button>
        </div>
    </center>
</body>
  
</html>

Output:

Reference: https://semantic-ui.com/elements/icon.html#payments–shopping


Article Tags :