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 ...
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 ...
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 ...
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 ...
How to Make a Table Scroll
It's very common for a table to contain more data than can be displayed on a webpage without scrolling the webpage. A large table would be much easier to deal with if the table contents itself could scroll, rather than having to scroll the entire webpage. In this article, I'll show you exactly how to accomplish that. 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 ...
Use HTML Target Attribute to Specify Where to Open Document
The target attribute, originally created to work with frames, now deprecated, is used to specify where to load a document. More ...
Changing the Size of an Image on Your Webpage
One of the most important procedures in designing a webpage is proper sizing of images. There are two ways to resize an image, use a graphics application, or set the width and height attributes in the html img tag. 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 ...
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 ...
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 ...
HTML5 Nav Element
The nav element provides a container for a block of navigational links. You should not place every stray link in a nav element. Applications such as parsers and screen readers for visually challenged users use the nav element to identify major navigation blocks. More ...

