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 ...
What is HTML?
The first HTML was used in 1989 by the physicist Tim Berners-Lee working at the CERN particle physics laboratory in Geneva Switzerland. It was used to share documents. 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 ...
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 ...
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 ...
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 ...
Semantic (X)HTML: Markup with Meaning
Contrary to what you may have learned in the earlier years of web development, (X)HTML should not define the look and presentation of a web page (that's the job of CSS). Instead, the purpose of (X)HTML is to provide context and meaning to the content of the document, this is referred to as semantic markup. 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 ...
Use Meta Tags for Search Engine Optimization
Statistics show that only one of every four Web Sites use Meta tags. However using these tags can give your site an advantage over other sites that do not. Meta tags enable most visitors to initially find your site from the search engines. More ...
HTML Bulleted or Unordered 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 bulleted list. 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 ...
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 ...

