programming-examples/html/Basics/Insert contact information.html

14 lines
356 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!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>