Sunday, October 5, 2025
HomeLanguagesReactJS Semantic UI header element

ReactJS Semantic UI header element

Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses the predefined CSS, JQuery language to incorporate in different frameworks.

In this article we will know how to use the header element in ReactJS Semantic UI. The header element is used to make a header.

Properties:

  • Page Headers: It is used to set the hierarchy of the section of the page.
  • Content Headers: It is used to specify the importance of a particular section.
  • Icon Headers: It is used to give emphasis on a particular icon.
  • Subheaders: It is used for smaller content.

 

States:

  • Disabled: This state is used disable the header.

Syntax:

<header size='size'>Header</Header>

Creating React Application And Installing Module:

  • Step 1: Create a React application using the following command.
    npx create-react-app foldername
  • Step 2: After creating your project folder i.e. foldername, move to it using the following command.
    cd foldername
  • Step 3: Install semantic UI in your given directory.
     npm install semantic-ui-react semantic-ui-css

Project Structure: It will look like the following.

Example 1: In this example, we will be going to use basic header element by using ReactJS Semantic UI header element.

App.js




import React from 'react'
import {Header} from 'semantic-ui-react'
  
const styleLink = document.createElement("link");
styleLink.rel = "stylesheet";
styleLink.href = 
document.head.appendChild(styleLink);
  
<br></br>
const Btt = () =>
<div>
    <Header as='h1'>neveropen</Header>
    <Header as='h2'>neveropen</Header>
    <Header as='h3'>neveropen</Header>
    <Header as='h4'>neveropen</Header>
    <Header as='h5'>neveropen</Header>
    <Header as='h6'>neveropen</Header>
  </div>
  
export default Btt    


 

Step to Run Application: Run the application  from the root directory of the project, using the following command.

npm start

Output:

Example 2: In this example, we are going to use the header element with the size attribute and disabled state by using ReactJS Semantic UI header element.

App.js




import React from 'react'
import {Header} from 'semantic-ui-react'
  
const styleLink = document.createElement("link");
styleLink.rel = "stylesheet";
styleLink.href = 
document.head.appendChild(styleLink);
  
<br></br>
const Btt = () =>
<div>
    <Header size='huge'>neveropen</Header>
    <Header size='large'>neveropen</Header>
    <Header size='medium'>neveropen</Header>
    <Header size='small'>neveropen</Header>
    <Header size='tiny'>neveropen</Header>
  </div>
  
export default Btt    


Step to Run Application: Run the application  from the root directory of the project, using the following command.

npm start

Output:

Reference: https://react.semantic-ui.com/elements/header

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32337 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6706 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6823 POSTS0 COMMENTS
Ted Musemwa
7089 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6779 POSTS0 COMMENTS