HTML List Basics
One of the most common structures found on a webpage is a list. Many designers are applying CSS DHTML to their lists to make them more fancy, but there's nothing wrong with a good old-fashioned basic html list. In any case, if you want to get fancy with your lists, it's best to learn the basics first. More ...
HTML center Tag
The HTML center tag is used to center an element on the webpage The center tag is deprecated, which means it may not be supported in future browsers. The prefered way to define visual layout today is to use style rules. More ...
HTML Numbered or Ordered List
There are three kinds of html lists; The unordered list, the definition list, and the ordered
list, which in which every item is preceded by a number or letter. More ...
The HTML Head Tag
This article describes the structure of a webpage document and the html head tag. More ...
Webpage DOCTYPE Declarations Explained
DOCTYPE is a declaration that should appear as the first line in your webpage code. It defines the standard to which your webpage is coded, and provides information to the browser as to how the code should be interpreted. Make sure your webpage's doctype matches it's coding standard. More ...
Text Input Box Basics
The most common way to receive information from a visitor to your website is to let them type it into a text box. In this article you learn the basics of using text boxes on your webpages. More ...
Changing the Size of an Image on Your Webpage
One of the most important procedures in designing a webpage is proper sizing of images. There are two ways to resize an image, use a graphics application, or set the width and height attributes in the html img tag. 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 ...
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 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 ...
XHTML Basics
HTML and XHML look very similar. But HTML was designed long before XHTML and therefore is less rigorous. In other words, HTML does not require the coder to follow strict rules, while if you don't strictly follow the rules while coding XHTML, it just plain won't work. 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 ...
