Open In App

Blaze UI Headings Super

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:

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.




<!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.




<!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/


Article Tags :