Example of HTML address tag - HTML CSS HTML

HTML CSS examples for HTML:Text Format

Description

Example of HTML address tag

Demo Code

ResultView the demo in separate window

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

Related Tutorials