What are Props in React? – Complete Beginner to Advanced Guide (2026)

Image
  What are Props ( Props is short for Properties)  in React?   Props is short for Properties. In React, props are used to pass data from a parent component to a child component. They act as a way to send information from one component to another without rewriting the same component multiple times. Props are short for properties, and they are one of the most important concepts in React. Props are used to pass data from one component to another. By using props, a component becomes flexible, reusable, and more readable because the data is not baked into the component itself but received.   The best analogy for props is that of giving information to someone. For instance, different assignments can be given to different students by the teacher. All of them have to do the same thing, but each student gets a unique assignment. Similar to how props work in React. The same component renders different data depending on what prop value is passed.  Props can hold ...

html background color

 


 CSS Framework 


Background color Example 

<!Doctype html>
<html> 
 <head>
<meta name="viewport" contente="width=device-width, initial scale=1">
<link rel="stylesheet"
 href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
 <div classe="W3-container">
<h1>Background Colors</h1>
<p>The w3-color classes use background colors for HTML elements </p>
</div>

<div class="W3-container w3-red">
<h3>red colour</h3>
<P>Since red is the color of blood, it has historically been associated with sacrifice, danger, <br>and courage. Modern surveys in Europe and the United States show red is also the color most commonly associated with heat, activity</p>
 </div>

<div class="W3-container w3-blue"> 
<h3>Blue </h3> 
<P>The color blue represents both the sky and the sea and is associated with<br> open spaces, freedom,</p>

 <div class="w3-container w3-pink">  <h3>pink </h3>
 <P>The color pink symbolizes joy and happiness. The third Sunday of the advent <br>is said to be pink-colored according to Christianity <p>
</div>

</body>

</html>

Background color output 


Background color


Text colour program CSS 

Example 


<!DOCTYPE html>

<html>

<body>

<div class="W-container">

<h1>Text Colors</h1>

<p>The w-text-color classes defines text colors for T elements.</p> 

</div>

<div class=w-container w-text-red">

<h2>INDIA</h2>

<p>India, also known as the Republic of India, is a country is South Asia It is the seventh largest<br> country by area and with more than 3 billion people, it is the second most pupulous country as well as the most populous <br>democracy in the world, 

</div>

 <div class="w-container w-text-purple">

<h3>Maharashtra</h3>

<p>  

In the Raigad area, Raigad is a hill fort that is around 25 kilometers from Mahad. In 1674 AD, Chhatrapati Shivaji made this fort his capital after renovating it. There is a rope-way provided at Raigad Fort that allows one to quickly ascend from the ground to the fort.

 </P>

</div>

</body>

</html>


Text colour program CSS 

output 


Text colour

 Related post 

html iframe

feedback form html & css with source code

html anchor tag

Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

HTML Input Type Submit Syntax and Example