|
Answer» Here is a list of the methods that return a copy of the string wrapped inside an appropriate HTML tag.
- anchor(): Creates an HTML anchor that is used as a hypertext target.
- big(): Creates a string to be displayed in a big font as if it were in a tag.
- blink(): Creates a string to blink as if it were in a tag.
- bold(): Creates a string to be displayed as bold as if it were in a tag.
- FIXED(): Causes a string to be displayed in fixed-pitch font as if it were in a tag
- fontcolor(): Causes a string to be displayed in the specified color as if it were in a tag.
- fontsize(): Causes a string to be displayed in the specified font size as if it were in a tag.
- italics(): Causes a string to be italic, as if it were in an tag.
- LINK(): Creates an HTML hypertext link that requests another URL.
- small(): Causes a string to be displayed in a small font, as if it were in a tag.
- strike(): Causes a string to be displayed as struck-out text, as if it were in a tag.
- sub(): Causes a string to be displayed as a SUBSCRIPT, as if it were in a tag
- sup(): Causes a string to be displayed as a SUPERSCRIPT, as if it were in a tag
Here is a list of the methods that return a copy of the string wrapped inside an appropriate HTML tag.
|