<html>
<head>
<style>
/* Default CSS Values */
s {
text-decoration: line-through;
}
</style>
</head>
<body>
<p>An s element is displayed like this:</p>
<p><s>Some no-longer correct text.</s></p>
<p>A customized s element (changed "text-decoration"):</p>
<p><s style="text-decoration:underline;">Some no-longer correct text.</s></p>
</body>
</html>