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 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 ...
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 ...
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 ...
Easy Code to Add Yahoo Site Search to Your Website
There are several ways you can add site search to your website. This article provides the code for Yahoo site search, just paste this code into the desired location on your website. 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 ...
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 ...
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 ...
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 ...
HTML Numbered or Ordered List
There are three kinds of html lists; The unordered list, the definition list, and the ordered
list, which in which every item is preceded by a number or letter. More ...
How to Write and Run HTML
Fancy WYSIWYG web design applications generate voluminous amounts of unnecessary code. For these examples use a basic ASCII text editor. 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 ...

