How to Make a Table Scroll
It's very common for a table to contain more data than can be displayed on a webpage without scrolling the webpage. A large table would be much easier to deal with if the table contents itself could scroll, rather than having to scroll the entire webpage. In this article, I'll show you exactly how to accomplish that. More ...
HTML5 role Attribute
AJAX applications can update a webpage without the user realizing the content has changed. The role attribute can be used to inform the accessibility application that the webpage content has changed. More ...
Aligning an Image on Your Web Page
By default the baseline of the image is placed on the same baseline as the text. However you can set the align attribute to change where the baseline of the image will be located relative to the baseline of the text. 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 ...
Wrapping Text Around Images
By default the baseline of the image is placed on the same baseline as the text. If you want the text to wrap around the image, use the image tag's align attribute. More ...
Block and Inline HTML Elements
There are two main types of html elements, block and inline. A block element starts and ends with an inherent line break. An inline element starts at a position defined by its sequence in the code. 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 ...
Easy Form Design
In this article, I show you how to code your own html submission forms. Maybe you are using a WYSIWYG web page design tool and you can't get your forms to work the way you want them to. Maybe you want to show a web page designer how you want your form to look. 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 ...
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 ...
Keywords Meta Tag Generator
Free online keywords Meta tag generator. Paste your webpage html code into the text box, enter how many keywords you want in your keyword meta tag. The html code for a keyword meta tag webpage will be generated. 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 ...

