Team:Evry/wiki-guidelines

From 2012.igem.org

Revision as of 12:34, 13 July 2012 by Vadeo (Talk | contribs)

In order to keep our wiki clean please follow these guidelines when writing HTML code:

Contents

Titles

To put a title use the h1,h2,h3 tags:

<h1> put your title here </h1>

Examples

h1 title

h2 title

h3 title

New line

If you want to end the current line use the br tag:

<br/>

Example

line1
line2

Lists

Dotted

Use the ol to create a list and the li tag to add an item:

<ul>
<li> item 1 </li>
<li> item 2 </li>
..
</ul>

Example

  • item 1
  • item 2
  • ..

Numbered

<ol>
<li> item 1 </li>
<li> item 2 </li>
..
</ol>


Example

  1. item 1
  2. item 2
  3. ..

Images

The two steps to add an image are:

  1. Upload the image file using this page:

To include an image use the <img ... /> tag:

<img src="localisation of the image" alt="text to print if image not found" />

Examples