Easy Code to Add Google Site Search to Your Website
Some authors will tell you that you need to have an account with Google in order to create a Google Site Search box. This is entirely untrue. This artilce provides the code for Google site search, just paste this code into the desired location on your website. More ...
Form Input Labels
Using the label element with your form input elements rather than just placing text next to them is a good idea that makes your web site more accessible. More ...
Providing Alternate and Title Text for an Image
The alt and title attributes are both used to display text related to an image. When an image fails to load the text in the alt attribute is displayed. The title attribute is use to display popup text. More ...
Image Map Basics
An Image Map allows you to define areas of an image that act like a link so that when the user clicks on an area the browser loads the target webpage or media file. Image maps are an excellent way to provide metaphorical navigation or to call out the nomenclature of an object. This article shows you how to code simple and complex images maps. More ...
Nesting HTML Lists
Nesting a list means that a list item can be another list. As long as you keep your tags straight you can nest list within list, within list, and just keep on nesting. More ...
Radio Button Basics
A radio button is a type of input element for a form. A radio button is similar to a checkbox except that when a user clicks a radio button that is part of a group, the previously selected radio button automatically de-selects. In other words, radio buttons in a group are mutually exclusive. 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 ...
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 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 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 ...
Line Breaks in HTML
Whether you are hand-coding your webpage, or trying to get your WYSIWYG webpage application to do what you want, understanding the html tags that control line breaks is very important. There are html tags to force a line break, tags to prevent a line break, and even tags to suggest a line break. More ...
HTML center Tag
The HTML center tag is used to center an element on the webpage The center tag is deprecated, which means it may not be supported in future browsers. The prefered way to define visual layout today is to use style rules. More ...