Open In App

Semantic-UI Icon Set Logistics

Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. 

Semantic UI icons can be used for representing various things and activities. Semantic UI Icon Logistic Set is a total of 10 icons in the logistics icon set which can be used for representing objects or service activity related to logistics. Icons can represent common logistic activity



Semantic UI Icon Set Logistics Classes:

Syntax:



<i class="icon ... Icon-Set-Logistics-Classes"></i>

Example1: The example below illustrates the use of all 10 icons listed above.




<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic UI - Icon Set Logistics</title>
    <!-- Scripts and CSS -->
    <link rel="stylesheet"
          href=
     
    <style>
        .ui.container {
            text-align: center;
        }
  
        h4 {
            margin-top: 0px;
        }
  
        .ui.grid {
            margin-top: 30px !important;
        }
    </style>
</head>
  
<body>
    <div class="ui container">
        <div>
            <h1 class="ui green header">GeeksforGeeks</h1>
            <strong>Semantic UI - Icon Set Logistics</strong>
        </div>
        <div class="ui grid">
            <div class="four wide column">
                <i class="icon big box"></i>
            </div>
            <div class="four wide column">
                <i class="icon big boxes"></i>
            </div>
            <div class="four wide column">
                <i class="icon big clipboard check"></i>
            </div>
            <div class="four wide column">
                <i class="icon big clipboard list"></i>
            </div>
            <div class="four wide column">
                <i class="icon big dolly"></i>
            </div>
            <div class="four wide column">
                <i class="icon big dolly flatbed"></i>
            </div>
            <div class="four wide column">
                <i class="icon big pallet"></i>
            </div>
            <div class="four wide column">
                <i class="icon big shipping fast"></i>
            </div>
            <div class="four wide column">
                <i class="icon big truck"></i>
            </div>
            <div class="four wide column">
                <i class="icon big warehouse"></i>
            </div>
        </div>
    </div>
</body>
  
</html>

Output:

Semantic-UI Icon Set Logistics

Example 2: The example below shows the use of Logistics Set icons with different colors.




<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic UI - Icon Set Logistics</title>
    <!-- Scripts and CSS -->
    <link rel="stylesheet" 
          href=
      
    <style>
        .ui.container {
            text-align: center;
        }
  
        h4 {
            margin-top: 0px;
        }
  
        .ui.grid {
            margin-top: 30px !important;
        }
    </style>
</head>
  
<body>
    <div class="ui container">
        <div>
            <h1 class="ui green header">GeeksforGeeks</h1>
            <strong>Semantic UI - Icon Set Logistics</strong>
        </div>
        <div class="ui grid">
            <div class="four wide column">
                <i class="icon red big box"></i>
            </div>
            <div class="four wide column">
                <i class="icon blue big boxes"></i>
            </div>
            <div class="four wide column">
                <i class="icon yellow big clipboard check"></i>
            </div>
            <div class="four wide column">
                <i class="icon green big clipboard list"></i>
            </div>
            <div class="four wide column">
                <i class="icon orange big dolly"></i>
            </div>
            <div class="four wide column">
                <i class="icon pink big dolly flatbed"></i>
            </div>
            <div class="four wide column">
                <i class="icon grey big pallet"></i>
            </div>
            <div class="four wide column">
                <i class="icon teal big shipping fast"></i>
            </div>
            <div class="four wide column">
                <i class="icon violet big truck"></i>
            </div>
            <div class="four wide column">
                <i class="icon big warehouse"></i>
            </div>
        </div>
    </div>
</body>
</html>

Output:

Semantic-UI Icon Set Logistics

Example 3: The example below shows the use of logistics set icons with size variation.




<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic UI - Icon Set Logistics</title>
    <!-- Scripts and CSS -->
    <link rel="stylesheet"
          href=
     
    <style>
        .ui.container {
            text-align: center;
        }
  
        h4 {
            margin-top: 0px;
        }
  
        .ui.grid {
            margin-top: 30px !important;
        }
    </style>
</head>
  
<body>
    <div class="ui container">
        <div>
            <h1 class="ui green header">GeeksforGeeks</h1>
            <strong>Semantic UI - Icon Set Logistics</strong>
        </div>
        <div class="ui grid">
            <div class="four wide column">
                <i class="icon small box"></i>
            </div>
            <div class="four wide column">
                <i class="icon small boxes"></i>
            </div>
            <div class="four wide column">
                <i class="icon small clipboard check"></i>
            </div>
            <div class="four wide column">
                <i class="icon large clipboard list"></i>
            </div>
            <div class="four wide column">
                <i class="icon large dolly"></i>
            </div>
            <div class="four wide column">
                <i class="icon dolly flatbed"></i>
            </div>
            <div class="four wide column">
                <i class="icon pallet"></i>
            </div>
            <div class="four wide column">
                <i class="icon big shipping fast"></i>
            </div>
            <div class="four wide column">
                <i class="icon big truck"></i>
            </div>
            <div class="four wide column">
                <i class="icon huge warehouse"></i>
            </div>
        </div>
    </div>
</body>
</html>

Output:

Semantic-UI Icon Set Logistics

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


Article Tags :