programming-examples/html/_Basics/Insert contact information.html
2019-11-15 12:59:38 +01:00

14 lines
356 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML address tag (check)</title>
</head>
<body>
<address>
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
Contact us at:<br>
Post Box 210, Hollywood<br>
USA
</address>
</body>
</html>