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 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 ...
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 ...
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 ...
The Font Tag
Starting with HTML version 4, the font tag was "deprecated" meaning that at some point in the future it may no longer be supported by some browsers. However, I believe the font tag will be supported long into the future. 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 ...
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 ...
Easy Code to Add Bing Site Search to Your Website
There are several ways you can add site search to your website. This artilce provides the code for Bing site search, just paste this code into the desired location on your website. 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 ...
HTML Linking Basics
Many people have difficulty linking their webpage to other webpages and media. In this article, you learn how to create relative links from any webpage to any other webpage in a directory structure, even to a specific location in another webpage. Plus you learned about a couple of useful link tag attributes. More ...
HTML List Basics
One of the most common structures found on a webpage is a list. Many designers are applying CSS DHTML to their lists to make them more fancy, but there's nothing wrong with a good old-fashioned basic html list. In any case, if you want to get fancy with your lists, it's best to learn the basics first. 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 ...
