Beispiel:HTML address-Element.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Beispiel zum address-Element</title>
    <style>
	body { margin: 2em; }
	article { border: medium solid #abc; border-radius: .5em; padding: 1em; }
	footer { margin-top: 5em; border-top: thin solid #abc; padding-top: 1em;}
    </style>  
  </head>
  <body>
    <h1>selfhtml-blog</h1>
    <article>
       <h1>Blogbeitrag</h1>
       <p>Inhalt des Beitrages</p>
       <address>
         Autor: <a href="">Max Mustermann</a>
       </address>
    </article>
    <footer>
      <address>
        © 1998-2013 SELFHTML <a href="http://selfhtml.org/impressum.html">Impressum</a> Software: Classic Forum 3.4
      </address>
    </footer>
  </body>
</html>