Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Abbreviations & Addresses</title> </head> <body> <p> <abbr title="HyperText Markup Language">HTML</abbr> is the standard language for web pages. </p> <p> The <abbr title="World Wide Web Consortium">W3C</abbr> maintains HTML standards. </p> <hr> <address> <strong>Acme Corp</strong><br> 123 Web Street<br> Internet City, IC 00001<br> <a href="mailto:info@acme.example">info@acme.example</a> </address> </body> </html>
Result
Open