ad

Thursday, November 20, 2025

html article tag example

html article tag example

web designing theory

This Blog You Will Learn 

ஃ What is the HTML <article> tag?

ஃ Why Use the <article> Tag?

 Syntax of HTML <article> tag 

ஃ Explain Program

ஃ Output

Wednesday, November 19, 2025

how to use the address tag in html

how to use the address tag in html

web designing theory

This Blog You Will Learn 

What is the <address> Tag?

What  Contend Should inside 

Why Use <address> 

Explain Program

Syntax of HTML <id> tag

 Output

Tuesday, November 18, 2025

how to Abbr Tag in HTML

how to Abbr Tag in HTML (Abbreviations in HTML)

web designing theory

This Blog You Will Learn 

What is ID Selector ?

Why USe the <abbr> Tag

Syntax of HTML <abbr> tag

Explain Program

 Output

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 :-