Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
For HTML, place the desired tags around the text that you wish to modify.

Common elements:

Anchor
span
span

span
Desired ElementHTML Code
Anchor
span

Span

<span>content</span>
A span is used to select a range of text for styling with CSS.
Paragraph block<p>content</p>
Paragraphs will provide an additional line break after the closing tag.
Line break<br /> or <br>
The line break does not have a closing tag, but rather includes the closing marker within the opening tag.
A line Break is the equivalent of pressing the [ENTER] key on your keyboard.

...