Superscript can be used to shift text upwards on a line. This technique can be used to display ordinal numbers in dates.
For example:
Thursday 3rd May, 2001
The HTML
<html>
<head>
<title>Superscript</title>
</head>
<body>
Superscript can be used to shift text upwards on a line. This technique
can be used to display ordinal numbers in dates.
<p>For example:
<p>Thursday 3<sup>rd</sup> May, 2001
</body>
</html>