Open In App

Semantic-UI Icon Set Writing

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. In this article, we are going to learn about Icon Set Writing. It is equipped with pre-built semantic components that help create responsive layouts using user-friendly HTML, and it uses predefined CSS and jQuery to incorporate different frameworks. An icon is a glyph used to represent something else. In Set writing, we have an icon that is related to writing like a bookmark icon, editing icon, and many more. 

Semantic-UI Label Writing Icon Class:



Syntax:

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

Example 1: The below example illustrates the Semantic-UI Icon Set Writing






<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic-UI Icon Set Writing/title>
    <link href=
          rel="stylesheet" />
</head>
  
<body>
    <center>
        <h1 class="ui header green">GeeksForGeeks</h1>
        <h2>Semantic UI Icon Set Writing </h2>
        <i class="archive large icon"> archive</i>
        <br><br><br>
        <i class="book large icon"> book</i>
        <br><br><br>
        <i class="bookmark large icon"> bookmark</i>
        <br><br><br>
        <i class="bookmark large outline icon"> bookmark outline
        </i><br><br><br><br>
        <i class="edit large icon">edit</i><br>
    </center>
</body>
  
</html>

Output:

Semantic-UI Icon Set Writing

Example 2: The below example illustrates the Semantic-UI Icon Set Writing




<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic-UI Icon Set Writing</title>
    <link href=
          rel="stylesheet" />
</head>
  
<body>
    <center>
        <h1 class="ui header green">GeeksforGeeks</h1>
        <h2>Semantic UI Icon Set Writing </h2>
        <i class="envelope open icon red"> envelope open</i>
        <br><br>
        <i class="file icon blue"> file icon</i>
        <br><br>
        <i class="newspaper icon yellow"> newspaper</i>
        <br><br>
        <i class="paper plane icon purple"> paper plane </i>
    </center>
</body>
  
</html>

Output:

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


Article Tags :