To add an address to the web page, use the address element in HTML. You can try to run the following code to implement address element in HTML −
Note − The address element renders in italic.
Example
<!DOCTYPE html> <html> <head> <title>HTML address element</title> </head> <body> <address> 200, Connaught Place<br /> Delhi<br /> New Delhi - 110001 </address> </body> </html>