Демонстрация времени и адреса
by webref
HTML
<!-- Время -->
<p><time>2011-08-24</time><br>
<time datetime="2011-08-24" pubdate>24 августа 2011</time><br>
<time datetime="15:00">15:00</time><br>
<time datetime="2011-08-24T15:00">24 августа 2011 в 15:00</time></p>
<!-- Адрес -->
<p><address>
<strong>Шэй Хоу</strong><br>
<a href="http://learn.shayhowe.com">http://learn.shayhowe.com</a><br>
<a href="mailto:[email protected]">[email protected]</a><br>
600 W. Chicago Ave.<br>
Suite 620<br>
Chicago, IL 60654<br>
USA
</address></p>
CSS
body {
color: #666;
font: 14px/24px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", Sans-Serif;
}
p {
margin: 0 0 24px 0;
}
p:last-of-type {
margin: 0;
}