User:Cgseif323/ReferenceSheet

From Halopedia, the Halo wiki

< User:Cgseif323
Revision as of 02:50, August 8, 2010 by Cgseif323 (talk | contribs) (New page: ==My Reference Sheet== On this page is a personal reference sheet that has quick examples and code blocks. ===Editing=== Colored text: <tt><nowiki><span style="color:red;">red text</spa…)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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