Create a Meta Tag Slide Show - No Java Script Required
You want to put a slide show on your webpage but, either you can not, or do not want to, use Java Script. Well, you can create a slide show using only the html refresh meta tag - no Java Script required. More ...
Can Enterprise Applications Be Made Using HTML5?
Enterprise applications need to be integrated with other applications used by the business and must be deployable across internet. Surveys indicate a gradual increase in the number of enterprise app developers migrating to HTML5. 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 ...
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 ...
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 ...
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 ...
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 ...
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 SPAN Basics
Whereas a div is a block element which defines a vertical section of a webpage or parent element, a span is an in-line element that is rendered during the line-by-line parsing of the html code for the webpage. Without styles a span provides no visible change. 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 ...
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 ...
Code For a Basic 2-Column Fluid Webpage Layout
In this article, I provide simple code for a 2-column webpage that does not use a table, but does use some of the latest HTML5 semantic elements. One nice thing about this design, besides the fact that it uses minimal html code, is that it creates a fluid layout. More ...
