Hey its shad0w,
Here is my fourth tutorial for anyone who cares.
<html>
<body>
<table border="1">
<tr>
<th>Heading</th>
<th>Another Heading</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<hr />
<p>
If you see no frames around the tables in these examples, your browser does not support the frame attribute.
</p>
<table frame="hsides" border="3">
<tr>
<td>First row</td>
</tr>
</table>
<br />
<table frame="vsides" border="3">
<tr>
<td>First row</td>
</tr>
</table>
<hr />
<h2>Here is a Unorganized List </h2>
<ul>
<li>Bread</li>
<li>Eggs</li>
<li>Milk</li>
</ul>
<h2> This is an organized list</h2>
<br />
<ol>
<li>Grab Airsoft Gun</li>
<li>Find Neighbors Cat</li>
<li>Shoot Cat</li>
<li> Walk Away</li>
</ol>
<body>
<html>
Explain time:
<table border="1">
<tr>
<th>Heading</th>
<th>Another Heading</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<table border="1">
table states that everything between it and </table> goes in a table.
Then border="1">
Defines the size of the border.
<tr>
Basically says that whats in here is the data in the table.
<th>
Is Table Header this is just a header for a table.
<td>
Is Table Data this is like a paragraph in a table. Whats in it will appear in a box in the table.
-----------------------------------------------------------------------------------------------
<table frame="hsides" border="3">
<tr>
<td>First row</td>
</tr>
</table>
<br />
<table frame="vsides" border="3">
<tr>
<td>First row</td>
</tr>
</table>
<table frame="hsides" border="3">
States it is a table. The Frame="hsides" States That there are lines on the Horizontal Sides. Border="1" States Size of Borders again.
<table frame="vsides" border="3">
This is same as above. Except Instead of Horizontal its Vertical
-----------------------------------------------------------------------------------------------
<h2>Here is a Unorganized List </h2>
<ul>
<li>Bread</li>
<li>Eggs</li>
<li>Milk</li>
</ul>
<h2> This is an organized list</h2>
<br />
<ol>
<li>Grab Airsoft Gun</li>
<li>Find Neighbors Cat</li>
<li>Shoot Cat</li>
<li> Walk Away</li>
</ol>
<ul>
This means Unorganized List It is what begins your List.What An unorganized list does is that it will create a list. It puts small square boxes at the begining of each item.
<li>
This is List Item. Its Like the paragraph just its for a list.
<ol>
This is Organized List.Begins Your list. Instead of Small boxes it Organizes your items with numbers.
-----------------------------------------------------------------------------------------------
That is all for this small tutorial on HTML Coding.
Thank you for reading,Hope this helps you out. Dont forget to rate comment or use.Also remember you can always ask me questions.
Thank you,
Shad0w