Open In App

Blaze UI Headings Super

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.

In this article, we will learn about Blaze UI Headings Super. Blaze UI Headings Super is used to make huge size headings.

Headings Super Used Class:

  • c-heading u-super: This will be used to make huge headings approx size 2em.

Syntax:

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

We will learn more about this using examples.

Example 1: In this example, we will create a super size heading.

HTML




<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href=
</head>
<body>
    <h1 style="color:green">GeeksforGeeks</h1>
    <h3> Blaze UI Extra Super Headings</h3>
    <h1 class="c-heading u-super" >
        GeeksforGeeks is a computer science portal
    </h1>
</body>
</html>


Output:

 

Example 2: In this example, we will create an extra large heading and provide some styling to it.

HTML




<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href=
</head>
<body>
    <h1 style="color:green">GeeksforGeeks</h1>
    <h3> Blaze UI Extra Super Headings</h3>
    <h1 class="c-heading u-super" 
        style="color:red;font-style: italic;">
        GeeksforGeeks is a computer science portal
    </h1>
</body>
</html>


Output:

 

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



Last Updated : 28 Apr, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads