Open In App

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:



 

States:

Syntax:

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

Creating React Application And Installing Module:

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.




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'>GeeksforGeeks</Header>
    <Header as='h2'>GeeksforGeeks</Header>
    <Header as='h3'>GeeksforGeeks</Header>
    <Header as='h4'>GeeksforGeeks</Header>
    <Header as='h5'>GeeksforGeeks</Header>
    <Header as='h6'>GeeksforGeeks</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.




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'>GeeksforGeeks</Header>
    <Header size='large'>GeeksforGeeks</Header>
    <Header size='medium'>GeeksforGeeks</Header>
    <Header size='small'>GeeksforGeeks</Header>
    <Header size='tiny'>GeeksforGeeks</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


Article Tags :