In HTML/CSS font size can be specified in the following fashion (deprecated but all browsers support it):
<font size="n">text</font>
with n
an element of {1, 2, 3, 4, 5, 6, 7}
.
Another possibility is the following:
<span style="font-size: s;">text</span>
with s
an element of {xx-small, x-small, small, medium, large, x-large, xx-large}
.
Is there any de-facto relation between the two ranges? I figured they refer to the same sizes, as they have both seven elements, but that turns out not to be the case.