Menu
HTML Design

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 ...

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 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 ...

Code For a Basic 2-Column Fluid Webpage Layout
In this article, I provide simple code for a 2-column webpage that does not use a table, but does use some of the latest HTML5 semantic elements. One nice thing about this design, besides the fact that it uses minimal html code, is that it creates a fluid layout. More ...

Use fieldset to Organize Form Elements
The html fieldset tag provides a way to organize groups of related form input elements. The fieldset tag draws a box around the related elements. Used along with the legend tag, it provides a way to label the groups of related elements. More ...

HTML Frames Basics
A frame creates a separate pane within the browser window. A frame can contain its own webpage, or it can provide a different view of the same page in another frame in the same browser window. More ...

The Font Tag
Starting with HTML version 4, the font tag was "deprecated" meaning that at some point in the future it may no longer be supported by some browsers. However, I believe the font tag will be supported long into the future. More ...

Providing Alternate and Title Text for an Image
The alt and title attributes are both used to display text related to an image. When an image fails to load the text in the alt attribute is displayed. The title attribute is use to display popup text. More ...

Radio Button Basics
A radio button is a type of input element for a form. A radio button is similar to a checkbox except that when a user clicks a radio button that is part of a group, the previously selected radio button automatically de-selects. In other words, radio buttons in a group are mutually exclusive. More ...

HTML5 Input Type - Email
With previous versions of HTML you used the form control input type="text" to capture typed data from the user. You had to validate the user's input using string methods and or regular expressions. The HTML5 email control provides built-in validation of email addresses. More ...

The HTML Head Tag
This article describes the structure of a webpage document and the html head tag. More ...

HTML5 Header Element
The header element is one of HTML5's semantic elements. It provides a container for header information. A header element may contain ,logo author, navigation, search, version, copyright, and other such information. More ...


Learn more at amazon.com

Custom Search