Hot answers tagged dreamweaver
4
The term you for making text smaller and floating upwards is called superscript.
HTML
You can use the <sup> HTML tag to superscript text.
My text<sup>®</sup>
My text®
Here is a live example from w3schools.
CSS
Alternatively it can be done with CSS with something like this:
.superscript { vertical-align:super; ...
Only top voted, non community-wiki answers of a minimum length are eligible