Computer Science, asked by ksinukumar9798, 5 months ago

23. Write a, sample HTML code to display an address in exactly the same as given
Tina Lal
M9, Connaught Circus,
New Delhi - 1​

Answers

Answered by inzemam99
10

Answer:

<p><c><h6>.TINA LAL</H6></C></P>

<P><C><H6>M9, CONNAUGHT CIRCUS,</H6>

</C></P>

<P><C><H6> NEW DELHI- 1 </H6></C></P>

FOLLOW ME FOLLOW ME

Answered by ankhidassarma9
1

Answer:

<html>

<head>

<style>

address {

 display: block;

 font-style: italic;

 }

 </style>

 </head>

 <body>

 <p>An address will be displayed like this:</p>

 <address>

 <br>

 Tina Lal<br>

 M9, Connaught Circus,<br>

  New Delhi - 1

  </address>

  </body>

   </html>

Explanation:

  • The <address> tag is used for contact information or address.
  • The contact information/address can be an email address, URL, physical address, phone number, social media handle etc.

Similar questions