Open In App

Blaze UI Headings Small

Last Updated : 12 Apr, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Blaze UI is a free open source UI Toolkit that provides a great structure for building websites quickly with a scalable and maintainable foundation. All components in Blaze UI are developed mobile-first and rely solely on native browser features, not a separate library or framework. It helps us to create a scalable and responsive website fast and efficiently with a consistent style.

Heading elements are used to emphasize titles by creating bold and big typography. The Blaze UI provides multiple types of headings such as Super heading, Large heading, small heading, extra small heading, and more. In this article, we will learn about the small heading.

The small heading is used to emphasize the heading with bold styling and a slightly smaller font size than normal headings. To create a small heading in Blaze UI, we use the .c-heading and .u-small classes. The .c-heading class gives the heading usual styling of the blaze UI and .u-small makes the size of the heading smaller than usual. These classes can be applied on <h1> to <h6>, <div> and <span> elements.

Classes used for Small Heading:

  • u-small:  The .u-small class is used to create the small heading.

Syntax:

<h1 class="c-heading u-small">
    Content
</h1>

Example 1: This example demonstrates the small heading of Blaze UI in the <div> and <span> elements.

HTML




<!DOCTYPE html>
<html lang="en">
<head>
    <title>Blaze UI</title>
    <meta charset="utf-8">
    <meta name="viewport" 
    content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href=
</head>
  
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
        <strong>Blaze UI small heading</strong>
        <br>
        <div class="c-heading u-small">
            Small heading in div element
        </div>
        <span class="c-heading u-small">
            Small heading in span element
        </span>
    </center>
</body>
</html>


Output:

Output

Example 2: This example demonstrates the small heading of Blaze UI in the <h1> to <h6> element.

HTML




<!DOCTYPE html>
<html lang="en">
<head>
    <title>Blaze UI</title>
    <meta charset="utf-8">
    <meta name="viewport" 
    content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href=
</head>
  
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
        <strong>Blaze UI small heading</strong>
        <br>
        <h1 class="c-heading u-small">
            Small heading in h1 element
        </h1>
        <h2 class="c-heading u-small">
            Small heading in h2 element
        </h2>
        <h3 class="c-heading u-small">
            Small heading in h3 element
        </h3>
        <h4 class="c-heading u-small">
            Small heading in h4 element
        </h4>
        <h5 class="c-heading u-small">
            Small heading in h5 element
        </h5>
        <h6 class="c-heading u-small">
            Small heading in h6 element
        </h6>
    </center>
</body>
</html>


Output:

Output

Reference: https://www.blazeui.com/components/headings



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads