HTML CSS examples for HTML:Text Format
Example of HTML address tag
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML address tag</title> </head> <!-- ww w. j a va 2 s . co m--> <body> <address> Written by <a href="mailto:webmaster@example.com">java2s.com</a>.<br> Contact us at:<br> Post Box 999, Main Street<br> USA </address> </body> </html>