close
Coding Help Wikia
Advertisement


Bold Text[]

The Bold text can be used in four different ways!

Here are the three different ways to use bold text:

  • <strong>Insert bold text here</strong>, which gives you: Insert bold text here.

This method will only work with FANDOM coding.

  • '''Insert bold text here''', which gives you Insert bold text here.
  • <b>Insert bold text here</b>, which gives you: Insert bold text here.
  • You can use 'font-weight: bold' in your <span style tag, which gives you:Insert bold text here.

Italics[]

The Italic text can be used in four different ways!

Here are the three different ways to use italics text:

1. <em>insert italicized text here</em>, which gives you insert italicized text here.

2. This method only works with FANDOM coding. ''insert text here'', which results in insert italicized text here.

3. <i>insert italicized text here</i>, which gives you insert italicized text here.

4. You can use 'font-style: italic' in your <span style tag, which gives you insert italicized text here.

Underlined Text[]

The Underlined text can be used in three different ways! Underlined text in two different ways:

1. <u>insert text here</u>, which results in insert text here.

2.You can use 'text-decoration: underline' in your <span style tag, which results in insert text here.

Striked Text[]

The Striked text can be used in three different ways!

Striked text in three different ways:

1. <s>insert text here</s>, which results in insert text here.

2. <strike>insert text here</strike>, which results in Insert text here.

3. You can use 'text-decoration: line-through' in your <span style tag, which results in Insert text here.

Big Text[]

How to:<big>insert text here></big>, which results in insert text here.

Small Text[]

How to:<small>insert text here</small>, which results in insert text here.

Colored Text[]

The Colored text can be used in three different ways!
Three ways to do colored text (you can use HEX color codes, RGB/RGBA color codes, named colors, or HSV color codes for the color):

1. <font color="*color here*">insert text here</font>, which results in:
insert text here
2. <span style="color:*color here*">insert text here</span>, which results in:
insert text here
3. <div style="color*color here*">insert text here</div>, which results in:

insert text here

Scripts[]

Subscripts and superscripts are used as exponents or side notes.

Subscript:<sub>insert text here</sub>, which results in insert text here.

Superscript:<sup>insert text here</sup>, which results in insert text here.

Something similar to subscripts or superscripts is a Reference!

Code Format[]

This is used to reveal code tags (format code), which would otherwise be implemented as code.

Code:
<pre> Code here </pre>

Result:

Code here

More Attributes[]

To see more ways to modify your text, look at attributes, or one of the below pages:

Advertisement