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 ...
Use an Image as a Form Submit Button
This article describes how to use an image as a form submit button along with example code. More ...
HTML Editors
So you want to create a web site? Great idea! There are few things in this world as satisfying as creating a good web site and having other people look at it, comment on it and like it. More ...
Easiest HTML Calculator Eample Code
This example is meant for educational purposes only, and that is why the code is kept to bare minimum. Were it an actual published calculator it would need, among other things, error handling and validation code added. As an example for educational purposes it's excellent. 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 ...
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 ...
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 ...
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 ...
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 ...
The HTML Head Tag
This article describes the structure of a webpage document and the html head tag. More ...
HTML Select List Basics
The Select list is one of the most useful controls provided by HTML. This article demonstrates the incredible flexibility of the Select list and provides you with example code to do almost you could want with a Select list. More ...
HTML Special Characters - Character Entities
There are certain symbols or characters that you might want to enter in a webpage that you will not find keys for on your keyboard. There are other characters that you should not enter in your webpage text because they can be misinterpreted as code. Instead of entering one of these characters enter its character entity. More ...

