Please remember that WiKirby contains spoilers, which you read at your own risk! See our general disclaimer for details.

Help:HTML

From WiKirby, your independent source of Kirby knowledge.
Jump to navigationJump to search

This guide will help editors get started on learning the basics of HTML.

Text styles

There is a form of HTML used to stylize text. It is basic and spans the length of the text until it is closed. To use it, type <span style="style"></span>

Style commands

Beginning note: Multiple style commands can be strung together by placing a semicolon (;) after one command ends. For example, one can use <span style="color:blue; border: 1px solid gray">This text is blue with a gray border</span> to knock out both styles in one.


Color

Used to color text. Ex: <span style="color:green">This text is green.</span> will produce:

This text is green.

Border

This will put a border around the text. There are two types of borders: solid and dashed lines. For example, <span style="border: 1px solid green>This text has a solid green border which is 1 pixel thick.</span> will produce:

This text has a solid green border which is 1 pixel thick.

Background-color

This will add a colored background to the text. For example, <span style="background-color:green">This text has a green background</span> will produce:

This text has a green background.

-moz-border-radius

This is used to give a rounded edge to borders for users viewing the wiki with Mozilla Firefox. It can't be seen with any other browser. It must be used with the "border" style. For example: <span style="border:1px solid green; -moz-border-radius:15px">This text has a rounded border for Firefox viewers and a square border for other viewers.</span> will produce:

This text has a rounded border for Firefox viewers and a square border for other viewers.

Padding

Padding is used to tell the wiki how far the background should go out. To use it, type W<span style="padding: (number)em"></span>. Note that "em" should be included after the number, and it can be a decimal number. In addition, you can use "auto" for the padding. Do not place em after auto. Another note: This can only be used in conjunction with a background. It will not do anything otherwise. Ex: <nowiki><span style="background-color:green; padding: .8em">This text has a large background</span> will produce:

This text has a large background.

Float

Float tells the wiki where the text should go. There are two commands: Left and right. It will throw the text over to wherever you tell it. This should be used sparingly for text, as it can easily complicate pages. Don't use it in articles. Ex: <span style="float:right">This text is to the right</span> will produce:

This text is to the right.

Margin

Margin is used to pad without having the background expand. It will also prevent the background from overshadowing other text. It uses the same commands as padding (Xem or auto). There can be two numbers used for the margin. The first one will be the horizontal margin between the text above and below the current text, and the second will be the vertical margin, or the distance from the edge of the page. Using only one number will designate that number for both margins. Ex: <span style="margin:2em">This text has a margin of 2em</span> will produce:

This text has a margin of 2em.

Text-Decoration

Text-decoration is used to apply various functions to the text. It is multi-faceted and can create some interesting results.

Decoration Commands

These are the commands which you can use for text decoration. Note that you can only use one at a time.

Underline

This will underline text. It is easier to use <u></u> for this, however. For example:<span style="text-decoration:underline;">This text is underlined.</span> will produce:

This text is underlined.

Blink

This will make the text blink on and off. Please refrain from using this in articles, as it is very unprofessional in appearance and it can distract from the rest of the text. For example, <span style="text-decoration:blink;">This text is blinking.</span> will produce:

This text is blinking.

Plainlinks

Plainlinks is technically not a style command. It is a class command which is used to take the arrow out of off-wiki links. For example, a link to Nintendo.com normally appears like this: Nintendo.com. With <span class="plainlinks">[http://nintendo.com Nintendo.com]</span>, it will appear as such:

Nintendo.com

*Note that your default settings may format external links without arrows at all. In these cases, you will not see the arrow, but using this command will eliminate the extra space it leaves behind afterwards.

DIV

Div is used to denote blocks of text, such as message boxes. It uses the same commands as the span style (with the exception of plainlinks).

DIV Class

The class of a DIV denotes what type of text it is. This is used for the wiki to recognize what type of text you are creating so it can classify it appropriately.

Class commands

These are different classes of DIVs. Note that these do not automatically style your DIV.

toccolours

This is used to make the wiki treat the DIV as though it were a table of contents.

navbox

This is a box much like the ones used to navigate to similar pages.

Messagebox

This is a box like the one which notifies you of new messages.

DIV Style

The DIV style is used to give the text block the appearance you want. The class is only what it is called. All of the commands for span style work for DIV style, with several new ones, as well.

Commands which remain unchanged

  • Padding
  • Margin
  • Color
  • -moz-border-radius
  • Background-color
  • Border
  • Float

New Commands

Text-Align

This is used to specify the alignment of the text within the DIV. The commands are: Left, right, and center. Ex: <div class="Messagebox"><div style="background-color:green;margin:auto 5em;float:center;border:1px solid white;text-align:center;">This text is centered</div> will produce:

This text is centered.

Height

Height is used to make the background taller or shorter. It can use pixels or em for the commands. In addition, this does not move other text, so it's possible to eclipse other text if you're not careful. Make sure to set the vertical margin if you want to change the height! Note that this also only extends the background downwards. Ex: <div class="messagebox"><div style="background-color:green;border:1px dashed #00CC00;float:center;text-align:center;height:5em;">This text has a background which is 5em tall</div> will produce:

This text has a background which is 5em tall.

Width

Width is used to change the width of the DIV. It uses the same pixel and em commands, as well as a % command which tells the wiki what percent of the normal width to make the DIV. Ex: <div class="messagebox"><div style="background-color:pink;border:1px solid white;float:center;text-align:center;width:40em;">This text has a width of 40em or 400 pixels</div> would produce:

This text has a width of 40 em or 400 pixels.


Info/Navboxes

The infobox is a strange coding wonder. It works differently from everything else, but it allows for much better content and titled headings. All of the coding for DIVs will work for a navbox, but the box itself is coded in a strange way. An example of a navbox can be seen here. That is the most basic type, but there are other, more complicated ones such as the infoboxes, an example of which can be seen here.

Coding

To code one of these, you'll need to use the curly brackets { } and the pipes. (|) The coding works like this:

{| class="navbox" style="background-color:pink;border:1px solid gray; float:center; -moz-border-radius:15px; color:green;"
|-
! align="center" style="background-color:gray;border:1px solid orange; -moz-border-radius:15px; color:yellow;" | This is a navbox
|-
! align="center" |And it is the most useful and comprehensive form of text. It can be made into many things, and it is the best HTML skill to have.
|-
|}

This will produce the following:

Navboxes

As seen above, navboxes usually have a heading with a separate box. You can make multiple boxes within one navbox, actually, as long as you add in the styling for that particular line. Note that the first styling you input will be the styling for the whole box. The styling for the title is the second style or subsequent styles which you input. Ex:

Infoboxes

Infoboxes are used to display key information about a person, place, enemy, item, etc. They're a bit different from navboxes because they use what is known as "cells," which are portions of the area. In addition, they use a special wiki code known which will only display a section if the user enters the specific text and then enters the details. This is only used for templates, though. This guide will detail how to use each one.

For starters, the coding works like a navbox (curly brackets), but it uses two special templates which are set specifically for this purpose. They are: {{!}} and {{!-}}. The {{!}} will become a pipe (|), while the {{!-}} will become a pipe followed by a dash (|- ). However, do not attempt to use these in their raw format. If you do, the infobox will malfunction. Stick to the templates.

Let's get started. You've got some new codes to learn.

  • For the class, you will be putting "toccolours".
  • A new term you need to learn is cellpadding. It determines the vertical padding of the cells, normally, since you will usually be setting a width for it to keep.
  • The second new term you need to learn is "border-collapse". This prevents the wiki from placing borders OUTSIDE of the infobox! The tag you need to throw on is "border-collapse:collapse"
  • Font-size is also useful, here. It's self explanatory, as it allows you to change the size of the font. For example, "font-size:90%" will make the text 10% smaller.
  • Colspan is the next term you need.

Okay, we're ready to begin.

This one is the one as it appears in templates, so you will notice the command {{#if:}}. This command is used to only display a line if the defined text is entered. For example, the character infobox will not display the gender field if you do not type |gender =

Remember, you have to use the format for navboxes, so it looks like this:

{| class="toccolours" cellpadding="4" style="border:1px solid red;float:right;margin:0 0 1em 1em;width:22em;border-collapse:collapse;font-size:95%;text-align:left;"
! colspan="2" style="text-align:center;background-color:gray;font-size:110%;border:1px solid red;" |Title of Infobox

{{#if:{{{image|}}}|

{{!-}}

! colspan="2" style="border:1px solid red;text-align:center;" bgcolor="gray" {{!}} {{{image|}}}}}{{#if:{{{caption|}}}|<br/>{{{caption|}}}}}

|- valign="top"

{{#if:{{{field|}}}|

! style="border:1px solid red;text-align:center;" bgcolor="gray" {{!}} {{{field|}}}}} |}

If we take out the "if" commands, we can see it like this:

{| class="toccolours" cellpadding="4" style="border:1px solid red;float:right;margin:0 0 1em 1em;width:22em;border-collapse:collapse;font-size:95%;text-align:left;"
! colspan="2" style="text-align:center;background-color:gray;font-size:110%;border:1px solid red;" |Title of Infobox

{{!-}}

! colspan="2" style="border:1px solid red;text-align:center;" bgcolor="gray" {{!}} {{{image|}}} |<br/>{{{caption|}}}

|- valign="top"

! style="border:1px solid red;text-align:center;" bgcolor="gray" {{!}} {{{field|}}}

|}

Adding in some things to the fields, we can create this:

WiKirby
WiKirby.png
The WiKirby logo.
Founded 2010
Owner Axiomist


See? It's not as difficult as it seems.

There is one special command for these, however.

valign

valign will determine the placement of the text of one cell depending on the position of the text in the adjoining cell. The normal setting is "center." It is placed on the items which delineate new rows (the pipe dash |- )

For example, this:

{| class="wikitable" style="border:1px solid white"
|width=100 style="border:1px solid white;"|'''Cell 1'''||style="border:1px solid white;" width=100|'''Cell 2'''
|- valign=top
|style="border:1px solid white;"| Info one
|style="border:1px solid white"|List item 1<br/>Item 2<br/>Item 3<br/>Item 4
|- valign=center
|style="border:1px solid white"|Info two
|style="border:1px solid white;"| List item 1<br/>Item 2<br/>Item 3<br/>Item 4
|- valign=bottom
|style="border:1px solid white;"| Info three
|style="border:1px solid white;"| List item 1<br/>Item 2<br/>Item 3<br/>Item 4
|-
|}

Will produce this:

Cell 1 Cell 2
Info one List item 1
Item 2
Item 3
Item 4
Info two List item 1
Item 2
Item 3
Item 4
Info three List item 1
Item 2
Item 3
Item 4

Miscellaneous HTML

There are several other HTML terms which do not fall under any specific category.

<i><b><u><s>

<i> is used to italicize text, <b> is used to boldface text, <u> is used to underline text, and <s> is used to make strikethrough text.

Definition List

The definition list is used to create a quick list. It is used like so:

<DL>(List title) <DT>(Definition Term) <DD>(Definition Description) </DL>

The list does not have to be titled. With it, you can type this:

<DL>Wikis

<DT>WiKirby

<DD>The best wiki ever!

<DT>Wikipedia

<DD>The original Wiki.

</DL>

to make this:

Wikis
WiKirby
The best wiki ever!
Wikipedia
The original Wiki.
Or an easier way
is to use ; and :

Table

It is possible to make tables with HTML, too. The commands used are: <table border="#"> (Indicates beginning of table. Also can be used to determine the size of the border and use other various style commands.)

<tr> (Stands for "Table Row." Indicates a new row. Add one between two rows to indicate that one row has ended.)

<th width="#">Title (Stands for "Table Header." Used to indicate that it is a header. You should use this to set the width of that particular column and then give it a title. If you wish for this to be the upper left header box and wish for it to be blank, do not add text.)

<td>Title/text (Stands for "Table delineation." Used to add the next text box in the table. You should add the same amount of these as there are headers, even if there is no text in it.)

</table> (Used to end the table.)


<choose><option>

The <choose> and <option> tags are used to randomly select one of several choices. To use it, type <choose><option>(first option)</option><option>(second option)</option><option>(third option)</option></choose>

You can use as many options as you like. Just don't forget to close each option tag and to put the </choose> tag at the end. Do not use this in articles, though, as this will randomly choose something each time the page is loaded. For example,

<choose><option>I have a dog.</option><option>I have a cat.</option><option>I have a dog and a cat.</option></choose> will produce one of the three options. To see it in action, look at the output below, then reload the page and check it again. It may change or stay the same.

I have a cat.

KSA Parasol Waddle Dee Pause Screen Artwork.png