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 ...
XHTML Basics
HTML and XHML look very similar. But HTML was designed long before XHTML and therefore is less rigorous. In other words, HTML does not require the coder to follow strict rules, while if you don't strictly follow the rules while coding XHTML, it just plain won't work. More ...
How to Use a Meta Redirect
A Meta Redirect is a META tag that, when a visitor arrives at your webpage, automatically redirects their browser to a different webpage. There are several reasons why you might want to use a meta redirect. More ...
Aligning an Image on Your Web Page
By default the baseline of the image is placed on the same baseline as the text. However you can set the align attribute to change where the baseline of the image will be located relative to the baseline of the text. 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 ...
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 ...
How to Code HTML Lists
A list is an arrangement of text about related items, usually arranged vertically. The items may, or may not be arranged in a specific order Readers like lists because a list is more readable than a block of text and provides order in a more easily understandable way. 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 ...
Line Breaks in HTML
Whether you are hand-coding your webpage, or trying to get your WYSIWYG webpage application to do what you want, understanding the html tags that control line breaks is very important. There are html tags to force a line break, tags to prevent a line break, and even tags to suggest a line break. 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 ...
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 ...
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 ...

