HTML Basics - Part 8 - Introduction To Tables
If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!Tables…
Example of a Table…
What are tables used for?
Tables are used to make data easier to interpret or to just give your document more impact.
<table border=4>
<tr>
<th>What are tables used for?</th>
</tr>
<tr>
<td>Tables are used to make data easier to interpret or to [...]
HTML Basics - Part 7 - Page Anchors
Example Jump to Bottom
Page anchors allow visitors to jump to a specific place in the current page or to jump to a specific place on another page.
You usually use page anchors if you want a graphic or text link half way down another page. That way your visitor doesn’t have read all through the [...]
HTML Basics - Part 6 - Creating Lists
The UNORDERED LIST…
The Bullet List is the first of the three types of lists. This is probably the most common list you will use.
Example of an Unordered List…
pencils
pens
erasers
paper
glue
Notice the Bullet before each list Item. Now here is the HTML Code for the Unordered List Above…
<ul>
<li>pencils</li>
<li>pens</li>
<li>erasers</li>
<li>paper</li>
<li>glue</li>
</ul>
The [...]
HTML Basics - Part 5 - Hyperlinks Explained
A hypertext link; a graphic or text string which, when clicked, opens a new web page or jumps to a new location in the current page.
When creating basic hyperlinks, we use the ANCHOR tag together with the HREF Attribute (hyperlink reference).
An anchor can point to any resource on the Web: an HTML page, an image, [...]






