ad

Monday, November 17, 2025

how to use anchor tag in html

 how to use anchor tag in html

web designing theory
how to use anchor tag in html

Example 

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

       <h1> how to use anchor tag in html  </h1>
       <a href="https://webdesigningtheory.blogspot.com/">
        Visit web designing theory blogspot.com</a>
    </body>
    </html>

how to use anchor 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> how to use anchor tag in html  </h1>

<h1> heading tag (largest heading ).

display the text  "how to use anchor tag in html "  the page in large bold letters.

 Step 6]

Anchor <a> tag 

 
<a href="https://webdesigningtheory.blogspot.com/">
        Visit web designing theory blogspot.com</a>

 href =  stand for hypertext reference.

  it defines the URL link will go to clicked. open  browser link 

  Visit web designing theory blogspot.com

  Clickable text user will see on page.

 Step  7] 

closing the Tag


</body>

 </html>

how to use anchor tag in html

Output

how to use anchor tag in html




Related Post :-

learn html link tag

html italic tag

learn the html underline tag

what is doctype declaration in html

 what is  <!DOCTYPE>  declaration in html

web designing theory

what is doctype declaration in html

Example 

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the  webdesigningtheory.blogspot.com </title>
    </head>
    <body>
      The Content of the website  web designing theory
        BlogSpot  webdesigningtheory.blogspot.com
    </body>
    </html>

what is doctype declaration 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 title of the webpage 

on the browser tag

 search engine results.

Step 5] 

<body>
      !doctype html  tag  Explain  <br>

      The Content of the website  web designing theory
        blogspot  webdesigningtheory.blogspot.com
    </body>

body section contains content that will be displayed on the webpage.

    Body section contains content plain text that will appear on the page.

      <br>

 <br> tag use create line break. 

Step 6 ] 

closing the Tag


</body>

 </html>

what is doctype declaration in html

Output

what is doctype declaration in html



Related Post :-



Saturday, November 15, 2025

how to use comment tag in html

 how to use comment  tag in html 

https://webdesigningtheory.blogspot.com

how to use comment  tag in html 

Example 


<!DOCTYPE html>
<html>
<body>

<!-- This is a comment -->
<p>Web Designing theory blogger (webdesigningtheory.blogspot.com)</p>
<!-- Comments are not displayed in the browser -->

</body>
</html>

how to use comment  tag in html 

Explain Program

Step 1 ]

<!Doctype html>

<!doctype html>  always be the first line of any HTML document.

Step 2 ]

   <html> and </html>

   html  is the root element.

Step 3 ]

<body> and </body>

body  is  main content area.

All visible content inside to  the <body> tag

Step 4]

<!-- This is a comment -->

html comment 

comments are not visible on the webpage.   they are only seen in the code.

Step 5]

<p>Web Designing theory blogger (webdesigningtheory.blogspot.com)</p>

paragraph tag . displays the text  web designing theory blogger ( webdesigningtheory.blogspot.com )

display webpage.

Step 6]


closing the Tag


</body>

 </html>

how to use comment  tag in html 

Output

how to use comment  tag in html


Related Post :-

how to use the html button input

how to create ordered lists in html

html alignment tag

Friday, November 14, 2025

how to use small tag in html

   how to use small tag in html

https://webdesigningtheory.blogspot.com

   how to use small tag in html

Example 

<!DOCTYPE html>
<html>
  <body>
  <h2> what is the <small> tag in html </h2>
    <p>student Refer  Web Designing  Theory  learn programming language</p>
    <p>  <small>  Student Refer  Web Designing  Theory  learn CSS
Programming language
</small> </p>
  </body>

  </html>


   how to use small tag in html

Explain Program

Step 1 ]

<!Doctype html>

<!doctype html>  always be the first line of any HTML document.

Step 2 ]

   <html> and </html>

   html  is the root element.

Step 3 ]

<body> and </body>

body  is  main content area.

All visible content inside to  the <body> tag

Step 4]

<h2> what is the <small> tag in html </h2>
 
heading    inside also use  <small>  tag 
heading display  title .

Step 5]

    <p>student Refer  Web Designing  Theory  learn programming language</p>


<p> create a paragraph.
 paragraph  contains normal text.
text displayed the browser.

Step 6]


<p>  <small>  Student Refer  Web Designing  Theory
 learn CSS Programming language

</small> </p>
 

 
<p> tag inside use the <small>  tag entire text.
  <small> tag  makes text smaller than normal text.
 <small>  tag normal paragraph 
 second paragraph  with smaller size text 

Step 7]


closing the Tag

</body>

 </html>

how to use small tag in html

Output



how to use small tag in html



Thursday, November 13, 2025

how to use the del tag in HTML

 

how to use the <del> tag in HTML 

https://webdesigningtheory.blogspot.com

how to use the <del> tag in HTML 

Example 

<!DOCTYPE html>
<html>
 <body>
  <h2> how to use Inserted  text tag in html</h2>
<p>student learn <del> HTML </del> programming language</p>
    <p> Student learn <del>CSS</del> Programming language</p>

 </body>

</html>

how to use the <del> tag in HTML 

Explain Program

Step 1 ]

<!Doctype html>

<!doctype html>  always be the first line of any HTML document.

Step 2 ]

   <html> and </html>

   html  is the root element.

Step 3 ]

<body> and </body>

body  is  main content area.

All visible content inside to  the <body> tag

Step 4]

<h2> how to use Inserted  text tag in html</h2>

<h2> ... </h2>

 html has six heading levels <h1> to <h6>.
 <h2> use  subheading to describe  the topic of page.

Step 5]

<p>student learn <del> HTML </del> programming language</p>

<p>  defines a paragraph tag 

normal text plus <del> tag

<del> HTML</del>  HTML is marked as deleted text.

deleted text with strikethrough  line

Step 5]

  <p> Student learn <del>CSS</del> Programming language</p>

<p>  defines a paragraph tag 

normal text plus <del> tag

<del> CSS</del>  HTML is marked as deleted text.
deleted text with strikethrough  line

Step 6]

closing the Tag

</body>

 </html>

how to use the <del> tag in HTML 
Output

how to use the del tag in HTML

Related Post :-

what is the strong tag in html

how to create text links in html

Wednesday, November 12, 2025

How to Use the HTML ins (inserted text) Tag

How to Use the HTML <ins> Tag 

web designing Theory  website

How to Use the HTML <ins> Tag

Example 


<!DOCTYPE html>
<html>
 <body>
  <h2> how to use Inserted  text tag in html</h2>
<p>student learn <ins> HTML </ins> programming language</p>
    <p> Student learn <ins>CSS</ins> Programming language</p>

 </body>

</html>

 

How to Use the HTML <ins> Tag 
Explain Program

Step 1 ]

<!Doctype html>

<!doctype html>  always be the first line of any HTML document.

Step 2 ]

   <html> and </html>

   html  is the root element.

Step 3 ]

<body> and </body>

body  is  main content area.

All visible content inside to  the <body> tag

Step 4]

<h2> how to use Inserted text tag in html</h2>

<h2> ... </h2>

 html has six heading levels <h1> to <h6>.
 <h2> use  subheading to describe  the topic of page.

Step 5]


<p>student learn <ins> HTML </ins> programming language</p>

<p>..  </p>

stands paragraph  use display blocks of text.

 inside thid paragraph  another tag <ins> around the word html
     <ins> tag 
 <ins>  inserted text .
 <ins>  use  mark text that has added or inserted into document.
  webpage HTML  appear underlined indicating  inserted tag 

Step 6]


<p> Student learn <ins>CSS</ins> Programming language</p>

<p>..  </p>

stands paragraph  use display blocks of text.

 inside thid paragraph  another tag <ins> around the word html
     <ins> tag 
 <ins>  inserted text .
 <ins>  use  mark text that has added or inserted into document.
 webpage CSS  appear underlined indicating  inserted tag 

Step 7]

closing the Tag

</body>
</html>

How to Use the HTML <ins> Tag 
Output




Related Post :-

how to use subscript tag in html

how to use mark tag in html

how to bold text in html tag

Tuesday, November 11, 2025

how to use subscript tag in html

how to use subscript tag in html

web designing Theory  website

how to use subscript tag in html
Example 

<!DOCTYPE html>
<html>
 <body>
  <h2> how to use subscript tag in html</h2>
<p>student learn <sub> HTML </sub> programming language</p>
    <p> Student learn <sub>CSS</sub> Programming language</p>

 </body>

</html>

how to use subscript tag in html
Explain Program

Step 1 ]

<!Doctype html>

<!doctype html>  always be the first line of any HTML document.

Step 2 ]

   <html> and </html>

   html  is the root element.

Step 3 ]

<body> and </body>

body  is  main content area.

All visible content inside to  the <body> tag

Step 4]

<h2> how to use subscript tag in html</h2>

<h2>  display title create second-level heading  bold  larger text.</h2>

Step 5]

<p>student learn <sub> HTML </sub> programming language</p>
    <p> Student learn <sub>CSS</sub> Programming language</p>

each <P> tag defines  paragraph text.

inside each <p>  tag is a subscript tag (<sub> tag).

Step 6]

<p> Student learn <sub> HTML </sub> programming language</p>

Sub tag  

the <sub> tag is use to display text slightly  below the normal line is subscript tag.
commonly use chemical formulas , mathematical expression 

HTML word appear as subscript tag  a bit lower and smaller than surrounding text.

<p> Student learn <sub> CSS </sub> programming language</p>

CSS word appear as subscript tag  a bit lower and smaller than surrounding text.

Step 7]

closing the Tag

</body>
</html>

how to use subscript tag in html
Output

how to use subscript tag in html


Related Post :-