Conditional Rendering in React Complete Guide with Examples 2026

Image
  Conditional Rendering in React Conditional Rendering is one of the most useful concepts in React. It means showing different content on the screen depending on a condition. For example: If a user is logged in → show Logout If a user is not logged in → show Login If a student has passed → show Congratulations If a product is available → show Buy Now If data is loading → show Loading... React does not have a separate if rendering tag. Instead, we use normal JavaScript conditions such as if, the ternary operator, &&, and switch to decide what should appear in the UI.

HTML Body Tag Structure, Syntax, and Examples

Head section  





1]  <BODY>  </BODY> TAG :-

The HTML <body> tag defines  main content of the HTML document to the section of the HTMI. document that will be directly visible on your web page. This tag is also commonly referred to as the <body> element. All those content which we write inside the <BODY> tag appear on the web browser.The <body> element contains all the contents of an HTML document, such as headings, paragraphs, images, hyperlinks, tables, lists, etc. Note: There can only be one <body> 


HTML syntax for body tag


<BODY>

<h1> This is body tag </h1>

</BODY>


Attributes Use Body Tag:-

 Bgcolor  :- To change the background color of the web document.

Background   :- To set the background image on the body of the web document

Text  :- To set the Foreground color of text.

Left Margin  :- To set the Left Margin of the web document. 

Top Margin :- To set the Top Margin of the web document. 

Link :- To set the Color of text for unvisited hyperlinks.

 VLink  :-To set the color of text for visited hyperlinks.

ALink  :- To set the color of text for selected hyperlinks.


Program 

<!doctype html>

<html>

<head>

<title> Example of Body Tag</title> 

</head>

<body>

<h1>This is the Body of the web document </h1><p> This is the content </p>

</body>

 </html>


HTML BODY TAG OUTPUT                                                                                                                 

Body tag







 

  Related Post :-

Dynamic website

html link tag

html q 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