ad

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

What is the <address> Tag?

 HTML <address> tag designed to contact information related to page.
 <address > tag regular  text, contact information 
 ✅Understanding the author or organization ,contact details.

What  Contend Should inside 

Organization  name
 Owner or  Author name
✔ Email address ( link)
✔  Phone number
 physical office address
 Website URL (website link put)
✔ Professional or Social media profile links 

Why Use <address> 

  •  Improves Accessibility
  •  Better for SEO
  • Semantic Clarity

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