Menu
HTML Design

Set Form Controls Tab Order With tabindex Attribute
The default tab order is the order in which the controls appear in the html code. You may prefer to set the tab order yourself. To set the tab order give each form element a tabindex attribute and set their number values to the order you want the tabs to work. More ...

How to Use a Meta Redirect
A Meta Redirect is a META tag that, when a visitor arrives at your webpage, automatically redirects their browser to a different webpage. There are several reasons why you might want to use a meta redirect. More ...

Web Page Template
Every webpage starts out with a basic set of tags, doctype, html, head, meta, title, and body.This article provides yo uwith ahe template for a basic webpage. 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 ...

Checkbox Basics
A checkbox is a type of input element for a form. A checkbox is similar to a radio button except that a radio button can be part of a group, so a previously selected radio button automatically de-selects. Whereas checkboxes are each independent so you can have multiple checkboxes checked at the same time. More ...

Make an HTML Element Editable
HTML5 provides the contenteditable attribute which can make most elements editable. This article provides code to make a div editable. More ...

HTML Table Basics
Use of an html table has become the most common method used for general webpage layout. Style Sheets can provide much more accurate web page layout, but the implementation of style sheets between different browser versions is inconsistent. More ...

HTML5 Input Type - URL
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 URL control provides built-in validation of URLs. More ...

Divide a Table Into Head (thead), Body (tbody), and Footer (tfoot) Sections
The html thead, tbody, and tfoot tags allow you to divide a table into sections. In this article I show you how to accomplish this in order to remove cell borders in the table header and add a different color to the table header and footers. More ...

HTML5 Nav Element
The nav element provides a container for a block of navigational links. You should not place every stray link in a nav element. Applications such as parsers and screen readers for visually challenged users use the nav element to identify major navigation blocks. 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 ...

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


Learn more at amazon.com

Custom Search