<!doctype html>
<html>
<head>
<style>
time {
border: 5px solid red;
padding: 5px 5px 5px 5px;
border-radius: 20px;
cursor: pointer;
}
time:hover::after {
content: '';
}
</style>
<script type='text/javascript' src='use_time.js'></script>
</head>
<body>
<p>We open at <time>10:00</time> every morning.</p>
<p>I have a date on <time datetime="2008-02-14 20:00">Valentines day</time>.</p>
<p><b>Note:</b> The time element does not render as anything special in any of the major browsers.</p>
<p><strong>Note:</strong> The time tag is not supported in Internet
Explorer 8 and earlier versions.</p>
</body>
</html>