Menu
HTML Design

HTML Text Tags Basics
Today, most webpage text design is accomplished through the use of style definitions rather than html tags. Although style definitions are extremely powerful for text design, they are also very complicated. I find some of the old html tags are quicker to use, require less code, and are easier to understand. 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 ...

HTML title Tag
The title tag defines the title of the webpage, which is displayed in the title bar of the Web browser. The title tag must be located in the head section of the document. One of the most important functions of the title tag is in SEO. More ...

Add an Image to a Web Page
Adding an image to a webpage makes it much more interesting. But for the image to appear, you have to get its path right. Using the methods described here, you have no problem defining the correct path. 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 ...

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

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

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

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

HTML dfn Tag
The dfn tag does exactly the same thing as the i (Italic) tag. There's really no reason not to use the more common i tag instead. Actually, you should prefer to set a style attribute for the definition word. 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 ...

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


Learn more at amazon.com

Custom Search