ad

Monday, November 24, 2025

What is the html BR tag with example

What is the html BR tag with example

web designing theory

What is the html BR tag with example

Syntax 

 Syntax of HTML <Br> tag


<br>
.
.
</br>

Example 



<!DOCTYPE html>
<html>
    <body>

     
      <h2> Web designing theory blogspot.com</h2>
      <p>
       webdesigningtheory.blogspot.com<br>
        web designing theory offers simple and practical lessons <br>
        in programming and web design.<br>
        join us and start learning today.</p>
    </body>
</html>

What is the html BR tag with example

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Step 2 ]

<html>.... . </html>

html is the root element of the html page.

 Every thing inside it is part of the webpage.

Step 3]

<body>.....</body>

<body> tag contains  all the visible content of the page.

inside <body> show the browser screen.

Step 4]

<h2> Web designing theory blogspot.com</h2>

<h2> level 2 heading tag.

this line displays web designing theory blogspot .com heading bold & larger font.

Step 5]

<p>.....</p>

<p> is paragraph tag use regular text.

inside <p> treated as paragraph.

<br >

<br> tag line break tag.

 Step 6]

closing the Tag


</body>

 </html>

<!DOCTYPE html> → Declares HTML5

<html> → Starts HTML document

<body> → Contains visible content

<h2> → Heading

<p> → Paragraph

<br> → Line break

</body> and </html> → Close body and HTML


What is the html BR tag with example

Output

What is the html BR tag with example


Related Post :-

Sunday, November 23, 2025

how to use body tag in html

how to use body tag in html

web designing theory


 <body> tag is the part of html document that contains all the content that appears on the webpage.  

webpage use anything see text, videos, images, link, buttons, forms inside the <body> tag. 

<body> tag Syntax

 Syntax 

 Syntax of HTML <body> tag


<body>
.
. <!-- body tag content visible to webpage-->

</body>

how to use body tag in html

Example 

<!DOCTYPE html>
<html>
    <body>

     
      <h2> Web designing theory blogspot.com</h2>
      <p> web designing theory offers simple and practical lessons<br>
in programming and web design.join us and start learning today.</p>
    </body>
</html>

how to use body tag in html

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Step 2 ]

<html>.... . </html>

html is the root element of the html page.

 Every thing inside it is part of the webpage.

Step 3]

<body>.....</body>

<body> tag contains  all the visible content of the page.

inside <body> show the browser screen.

Step 4]

<h2> Web designing theory blogspot.com</h2>

<h2> is heading tag.

displays  text in a larger bold style.

headings  from<h1> (largest) to <h6> (smallest).

Step 5]

<p>...</p>

<p> tag paragraph tag.

contains your normal text content.

<br>

<br> tag line break.

 moves text to the next line inside a paragraph.

Step 6]

closing the Tag


</body>

 </html>

how to use body tag in html
Output



Related Post :-


Saturday, November 22, 2025

what is the use of big tags in html

what is the use of big tags in html

web designing theory

what is the use of big tags in html

Syntax 

 Syntax of HTML <big> tag


<big>
.
.
</big>

Example 


<!DOCTYPE html>
<html>
    <body>

     
        <p> This is html paragraph text </p>
        <big> This is html big tag text</big>
    </body>
</html>


what is the use of big tags in html

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Step 2 ]

<html>.... . </html>

html is the root element of the html page.

 Every thing inside it is part of the webpage.

Step 3]

<head>.....</head>

head section contain metadata  about the webpage information 

for the browser not display on the webpage.

Step 4]

  <p> This is html paragraph text </p>

<p> stand for paragraph tag.

<p> displays text as normal paragraph with default spacing and formatting.

Step 5]

  <big> This is html big tag text</big>

 <big>  makes text slightly larger  than normal text.

<big> tag obsolute in html5  not be use modern web design.

Step  6] 

closing the Tag


</body>

 </html>

what is the use of big tags in html

Output


what is the use of big tags in html






Related Post :-

how to create checkbox in html

frameset tag in html with example

html reset button example

Friday, November 21, 2025

What is the HTML Tag

What Is the HTML <bdo> Tag

web designing theory

What Is the HTML <bdo> Tag

syntax 

 Syntax of HTML <bdo> tag


<bdo>
.
.
</bdo>

What Is the HTML <bdo> Tag

Example 


<!DOCTYPE html>
<html>
    <body>

      <h1> bdo Tag html </h1>
       <bdo dir="ltr">webdesigningtheory.blogspot.com</bdo><br>
        <bdo dir="rtl">webdesigningtheory.blogspot.com </bdo>
    </body>
</html>

What Is the HTML <bdo> Tag

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Step 2 ]

<html>.... . </html>

html is the root element of the html page.

 Every thing inside it is part of the webpage.

Step 3]

<head>.....</head>

head section contain metadata  about the webpage information 

for the browser not display on the webpage.

Step 4]

      <h1> bdo Tag html </h1>

webpage displays a heading with  the text.

bdo tag html  overrides the natural direction of the text.

<h1> is largest heading size.

Step 5]

<bdo dir="ltr">webdesigningtheory.blogspot.com</bdo><br>

  <bdo> stands for Bi-Directional Override.

 allows you to force direction which text is displayed.

 <dir="ltr">......</bdo>     mean show content from  Left to Right  

Step 6]

<bdo dir="rtl">webdesigningtheory.blogspot.com </bdo>

<dir="rtl"> 

 show text Right to Left.(reversed starting from right side)

Step 7]

<br>

line break  move the next text to new line.

Step 8]

closing the Tag


</body>

 </html>

What Is the HTML <bdo> Tag
Output


What Is the HTML <bdo> Tag







Related Post :-

how to use pre tag

html heading tag

how to use the image tag html

Thursday, November 20, 2025

html article tag example

html article tag example

web designing theory

html article tag example

Example 

<!DOCTYPE html>
<html>
    <body>
        <h1> Article element html</h1>
        <article>
            <h2> Web designing theory blogspost</h2>
             <p> webdesigningtheory.blogspot.com this website  education
platform
                student learn to the webdesigning subject HTML easy learn
 programming language       </p>
             </article>

             <article>
            <h2> Web designing theory blogspost</h2>
             <p> webdesigningtheory.blogspot.com this website  education
platform
                student learn to the webdesigning subject CSS easy learn
 programming language       </p>
             </article>
              <article>
            <h2> Web designing theory blogspost</h2>
             <p> webdesigningtheory.blogspot.com this website  education
platform
                student learn to the webdesigning subject PHP easy learn
 programming language       </p>
             </article>
    </body>

</html>

html article tag example

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Step 2 ]

<html>.... . </html>

html is the root element of the html page.

 Every thing inside it is part of the webpage.

Step 3]

<head>.....</head>

head section contain metadata  about the webpage information 

for the browser not display on the webpage.

Step 4]

  <h1> Article element html</h1>

  main heading of  the entire page.

Step 5]

<article> element 

 article element use content can stand on own blog post, news article, post

 <article>  new independent content block post 

 <h2>   -  sub-heading 

 <p>    -  paragraph

Step 5]

closing the Tag


</body>

 </html>

html article tag example

Output

html article tag example

Related Post :-

how to set image height

html link tag explain

how to use pre tag

l

Wednesday, November 19, 2025

how to use the address tag in html

how to use the address tag in html

web designing theory

how to use the address tag in html

Example 


<!DOCTYPE html>
<html>
  <head>
    <title>Title of the  webdesigningtheory.blogspot.com </title>
    </head>
    <body>
         <h1> Address element tag html</h1>
         <address>
         Written by <a href="https://webdesigningtheory.blogspot.com/">
aishwarya jadhav</a> <br>
         visit us at <br>
         online website blogspot.com<br>
          webdesigningtheory.blogspot.com<br>
          </address>  
 
    </body>
    </html>


how to use the address tag in html

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Step 2 ]

<html>.... . </html>

html is the root element of the html page.

 Every thing inside it is part of the webpage.

Step 3]

<head>.....</head>

head section contain metadata  about the webpage information 

for the browser not display on the webpage.

Step 4]

<title>Title of the  webdesigningtheory.blogspot.com </title>

<title> tag set the title of the webpage.

 title appears the browser tag and search engine result 

 Step 5]

 <h1> Address element tag html</h1>

<h1> is a heading tag.

<h1> main heading on your page & good for seo

 Step 6]

<address>
         Written by <a href="https://webdesigningtheory.blogspot.com/">
aishwarya jadhav</a> <br>
         visit us at <br>
         online website blogspot.com<br>
          webdesigningtheory.blogspot.com<br>
          </address>

 <address> tag HTML semantic tag use for contact information or author

   <address>

      Written by   :-   is plain text 

<a href="https://webdesigningtheory.blogspot.com/">aishwarya jadhav</a>
     

 is hyperlink to your blog.

<br>:- tags insert line breaks to separate lines.

 visit us at :-website info additional contact /location info

<address>   :- address text italic by default 

Step  7] 

closing the Tag


</body>

 </html>

how to use the address tag in html

Output



Tuesday, November 18, 2025

how to Abbr Tag in HTML

how to Abbr Tag in HTML (Abbreviations in HTML)

web designing theory

how to Abbr Tag in HTML

Example 

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the  webdesigningtheory.blogspot.com </title>
    </head>
    <body>

       <h1> abbr used to represent an abbreviation  element </h1>
        <p> <abbr title="web designing theory blogspot">HTML Tutorial
        </abbr> web designing theory Blogspot </p>
    </body>
    </html>

how to Abbr Tag in HTML

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Step 2 ]

<html>.... . </html>

html is the root element of the html page.

 Every thing inside it is part of the webpage.

Step 3]

<head>.....</head>

head section contain metadata  about the webpage information 

for the browser not display on the webpage.

Step 4]

<title>Title of the  webdesigningtheory.blogspot.com </title>

<title> tag set the title of the webpage.

 title appears the browser tag and search engine result 

<body>.....</body>

<body> tag contains  all the visible content of the page.

inside <body> show the browser screen.

 Step 5]

 <h1> abbr used to represent an abbreviation  element </h1>

<h1> tag defines the main heading of the page.

<h1> tag text inside  large  and bold use for page main topic use <h1> tag.

describes the page in about <abbr> html element.

 Step 6]

</abbr>

 <abbr> tag use indicate abbreviation.

  title="web designing theory blogspot

 provid full meaning abbreviation  HTML Tutorial

 Step 7]

closing the Tag


</body>

 </html>

how to Abbr Tag in HTML

Output

how to Abbr Tag in HTML

Related Post :-

html formatting tags

how to bold tag html

html how to insert table cells