Difference between revisions of "Main Page"

From Pirates Glory Wiki
(Dev Notes)
Line 31: Line 31:
 
== Dev Notes ==
 
== Dev Notes ==
  
Here is a table sample to use:
+
To create a table, use the <nowiki><table></table></nowiki> tags.
 +
 
 +
Then for every row you want to create, use <nowiki><tr></tr></nowiki> tags.
 +
Columns can be added to each row with <nowiki><td></td></nowiki> tags.
 +
You can use colspan to merge columns or rowspan to merge rows.
 +
 
 +
Here is an example:
 
<table style="margin-left:auto;margin-right:auto;width:95%">
 
<table style="margin-left:auto;margin-right:auto;width:95%">
 
<tr>
 
<tr>
<td>Row1,Column 1</td>
+
<td colspan="2" style="text-decoration:bold;">Sample Table</td>
<td>Row1,Column 2</td>
 
 
</tr>
 
</tr>
 
<tr>
 
<tr>
 
<td>Row2,Column 1</td>
 
<td>Row2,Column 1</td>
 
<td>Row2,Column 2</td>
 
<td>Row2,Column 2</td>
 +
</tr>
 +
<tr>
 +
<td>Row3,Column 1</td>
 +
<td>Row3,Column 2</td>
 
</tr>
 
</tr>
 
</table>
 
</table>

Revision as of 22:07, 6 February 2019

Under Construction

Please take notice. The Pirates Glory Wiki Site is under construction. We will be working to add pages and information as quickly as we can. If information is missing that is relevant to a page, please register and contribute.


Purpose

The Pirates Glory Wiki is a repository of game information to help newcomers and veteran players alike in their quest to conquer the world of Avonmora.


About Pirates Glory

Pirates Glory is a browser based game...... (Work in Progress)

https://www.piratesglory.com


Contributing Rules

1) Please post only factual game knowledge and information. If you have an opinion or suggestion on a game feature, please post it in the forums
2) If you have questions and are unsure how to contribute please join us on our Pirates Glory Slack Channel #wikidev

Main Categories

Game Mechanics
Game Rules
Guilds
Hideout
Mercantilism (Trade)
Nations
Piracy
Ports
Ships
Tutorials
Voodoo

Dev Notes

To create a table, use the <table></table> tags.

Then for every row you want to create, use <tr></tr> tags. Columns can be added to each row with <td></td> tags. You can use colspan to merge columns or rowspan to merge rows.

Here is an example:

Sample Table
Row2,Column 1 Row2,Column 2
Row3,Column 1 Row3,Column 2