User:Cgseif323/ReferenceSheet

From Halopedia, the Halo wiki

My Reference Sheet

On this page is a personal reference sheet that has quick examples and code blocks.

Editing

Colored text:
<span style="color:red;">red text</span>

Which would show: red text

Or:

<font color="COLOR">Text here</font>

Tables

Here is the markup:

 
 {| border="1"
 |+ The table's caption
 ! Column heading 1 !! Column heading 2 !! Column heading 3
 |-
 ! Row heading 1
 | Cell 2 || Cell 3
 |-
 ! Row heading A
 |Cell B ||Cell C
 |}
 
 

It would display this:

The table's caption
Column heading 1 Column heading 2 Column heading 3
Row heading 1 Cell 2 Cell 3
Row heading A Cell B Cell C