Building Your Learning Module...
Getting things ready for you!
Find videos you like?
Save to resource drawer for future reference!
Contact details for the entire page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Address Element</title>
</head>
<body>
<footer class="footer">
<h3>Contact Information</h3>
<address>
<strong>Tech Learning Academy</strong><br/>
123 Developer Street<br/>
San Francisco, CA 94105<br/>
<br/>
<strong>Email:</strong>
<a href="mailto:info@techacademy.com">info@techacademy.com</a><br/>
<strong>Phone:</strong>
<a href="tel:+14155551234">+1 (415) 555-1234</a>
</address>
</footer>
</body>
</html>Loading preview...
Author information for specific content
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Article Address</title>
</head>
<body>
<article class="article">
<h2>Understanding Semantic HTML</h2>
<p>Semantic HTML elements provide meaning to the web content beyond just presentation. They help browsers, search engines, and assistive technologies understand the structure and purpose of your content.</p>
<div class="author-info">
<h4>About the Author</h4>
<address>
Written by John Developer<br/>
<a href="mailto:john@example.com">john@example.com</a><br/>
Austin, Texas
</address>
</div>
</article>
</body>
</html>Loading preview...