HTML Definition 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 definition 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 ...
HTML Blockquote Basics
You have probably seen webpages that display a quote from the article, but taken out of the flow of the article text. The html blockquote element is easy to use and can be used break up the monotony of paragraphs of text and give your webpage a more professional look. More ...
HTML5 Header Element
The header element is one of HTML5's semantic elements. It provides a container for header information. A header element may contain ,logo author, navigation, search, version, copyright, and other such information. 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 ...
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 ...
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 ...
HTML Table Basics
Use of an html table has become the most common method used for general webpage layout. Style Sheets can provide much more accurate web page layout, but the implementation of style sheets between different browser versions is inconsistent. More ...
The HTML BODY tag
Two common body tag attributes are leftmargin and topmargin. Another common body tag attribute is bgcolor. The body tag background attribute can be used to set a webpage's background to a texture or image. The bgproperties attribute set with the value fixed causes the tiled background image to remain stationary while the webpage text is scrolled. More ...
HTML5 Input Type - Email
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 email control provides built-in validation of email addresses. 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 ...
How to Debug HTML
As your web browser reads your html code and tries to follow your instruction to lay out the webpage, it is extremely forgiving. But it can't read your mind, that's why you have to type everything according to the specification. More ...

