HTML DIV Basics
An html div is a block-level element that defines a horizontal section of a webpage. A block level element has an embedded carriage return before and after the element. Using styles, a div can be the best element to use for complex webpage layouts. More ...
Form Input Labels
Using the label element with your form input elements rather than just placing text next to them is a good idea that makes your web site more accessible. More ...
The Heading Tags
Html provides a set of heading tags that allow you set the size of the text in your headings and subheadings. The size ranges from h1 to h6. More ...
HTML abbr and acronym Tag
The abbr and acronym tags allow you to give information about the meaning of an abbreviation or acronym used in your text without disrupting the flow of text by placing the information directly in the text. This is done by putting the information in the tag's title attribute. The browser will then display the information as a tooltip. More ...
Using col and colgroup to Apply Attributes to a Table Column
You could add html attributes to each cell in a table column, however, with a large table this might be tedious, and it adds unnecessary code. The col tag allows you to define attributes for one or more columns in a table. The colgroup tag allows you apply attributes to a group of columns. More ...
HTML Bulleted or Unordered List
There are three kinds of lists; the ordered list, the definition list and the unordered list which is commonly known as the bulleted list. This article shows you how to code a bulleted list. More ...
HTML Horizontal Rule
A horizontal rule created by the hr tag creates a horizontal line that can can be used to break a webpage into sections. More ...
Adding Space Around an Image
With the html hspace and vspace attributes you can control the space around an image. Although these attributes were deprecated in HTML 4.01, they still work in all modern browsers. More ...
Line Breaks in HTML
Whether you are hand-coding your webpage, or trying to get your WYSIWYG webpage application to do what you want, understanding the html tags that control line breaks is very important. There are html tags to force a line break, tags to prevent a line break, and even tags to suggest a line break. More ...
Setting the Number of Items Visible in a Select List
An HTML Select list is a form control used to create a drop-down list of items from which the user can select. The select list can appear as a drop-down list, or by setting its size property it can appear as a scrolling list. More ...
Nesting HTML Lists
Nesting a list means that a list item can be another list. As long as you keep your tags straight you can nest list within list, within list, and just keep on nesting. More ...
Create a Meta Tag Slide Show - No Java Script Required
You want to put a slide show on your webpage but, either you can not, or do not want to, use Java Script. Well, you can create a slide show using only the html refresh meta tag - no Java Script required. More ...
