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 ...
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 ...
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 ...
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 ...
HTML SPAN Basics
Whereas a div is a block element which defines a vertical section of a webpage or parent element, a span is an in-line element that is rendered during the line-by-line parsing of the html code for the webpage. Without styles a span provides no visible change. More ...
HTML Definition 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 definition 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 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 ...
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 ...
HTML Linking Basics
Many people have difficulty linking their webpage to other webpages and media. In this article, you learn how to create relative links from any webpage to any other webpage in a directory structure, even to a specific location in another webpage. Plus you learned about a couple of useful link tag attributes. More ...
The HTML Head Tag
This article describes the structure of a webpage document and the html head tag. More ...
HTML Textarea Basics
In this article, you learn how to code an html textarea element and how to control the text in a textarea, along with an introduction into using CSS, Java Script, and server-side programming with an html textarea element. More ...

