Website Magazine

Lists and Bullets in HTML

 
It is pretty easy to make the bullets and lists that are seen in webpages.There are three lists supported by HTML: ordered, unordered, and definition. There is the <ol></ol> ordered list. Guess what? It’s ordered numerically. Check out the syntax for an HTML ordered list:
<ol type=”list type“>
<li>HTML
<li>JavaScript
<li>PHP
</ol>
The “list type” refers to the type of bullet […]

Filed under: HTML | No Comments

Inserting images in HTML

First of all, you should only use .jpg or .gif to display images. .png only has limited support at this time, so just use .jpg or .gif. If you have an image in another format, convert it to a .jpg or .gif first.
Images can be displayed in two ways: inline or external. An inline image […]

Filed under: HTML | No Comments

HTML Links

<a> & </a> The anchor tag is used to create links. There are a number of attributes for the anchor tag. (An attribute further defines the properties of the HTML tag - kind of like an adjective).
One such attribute is the ‘href’ attribute. The ‘href’ attribute is used to create a link to another document, […]

Filed under: HTML | No Comments

Tables in HTML - Part Two

To merge several cells into one, you need to create what is called a spanning cell, which just happens to be a cell that spans more than one row or column in a table. To span a column or td, we use colspan. To span more than one row or tr, we use rowspan. The […]

Filed under: HTML | No Comments