Yes, many web developers live and breathe HTML, but there are still tags and tricks that aren't used as often as they could be. What are some of your favorites?
|
15
|
|||||||||||||
|
|
|
I think that <fieldset> is often overlooked. It's an easy way to group form fields together. When presenting a large form, there are typically logical groups of data. Using a fieldset with a <legend> can visually separate the input fields, making it easier for the user. It can also be used out side the context of a form to present an easily styled box with a header element. See this page for an example. |
||||||||||
|
|
|
These "Hidden tricks of X" threads are getting repetitive but here's a few tags that aren't used enough:
|
||||||||||||||
|
|
|
One thing that seems to me to still be pervasive in the use of HTML is overuse of non-semantic constructs, such as tag soup. Simply learning about the HTML constructs that have been around since the early days of HTML, such as ordered/unordered lists, header tags, rather than relying on the trusty (rusty) old div. |
||
|
|
|
|
I love |
||
|
|
|
|
<abbr> |
||
|
|
|
|
A bit of overlap here but I would definitely recommend reading Five XHTML Elements You Didn't Know But Were Afraid to Ask. It speaks to:
And provides examples of each. |
||||||||||||
|
|
|
Definition lists are often not used to their full potential. Quite useful in adding structure to chronological or alphabetical lists, as well as the natural use for definitions. |
||
|
|
|
|
The word "element" is underused, even the HTML 4.01 specification states this:
See also: Lachy’s Log: HTML Tags. |
||||||||
|
|
|
Use of the |
||||||
|
|
|
A few tags I find interesting are the |
|||
|
|
|
Already mentioned, but I dont think you can mention it enough: It is so easy to throw in a label for each of your form fields, and it makes the usability much better. Maybe it's just me, since I've become accustomed to labels, but I like being able to click on the text next to a radio button to select that radio button. |
||
|
|
|
The |
||
|
|
One feature that is should NOT be used more than it is being used is the "blink" tag. |
||||||
|
|
|
Not enough people pay attention to using the right DocType Per HTML and XHTML standards, a DOCTYPE (short for “document type declaration”) informs the validator which version of (X)HTML you’re using, and must appear at the very top of every web page. DOCTYPEs are a key component of compliant web pages: your markup and CSS won’t validate without them. |
||
|
|
|
It's hard to say This semantically designates it clearly as the most important content on the page, and does wonders for getting your site into the search results in searches for the site name (along with, of course, the title element). |
||
|
|
|
|
I miss full browser support of the link tag. I think maybe Mozilla Seamonkey still has a 'site navigation' toolbar, which lets you navigate multipage documents easily, if they were marked up with navigation links in their headers. Latex2HTML supported them, which was pretty handy back when there when lots of web pages were still generated with that (before pdf took over for academic publication on the web).
Now that (so far as I know) no major browser supports them explicitly, it seems that the only use for these tags is in prefetch, which is still pretty important. See this DevMo article on using link tags for prefetch, for example. For adding support to firefox, there is at least one plugin available. |
||||||||
|
|
|
The Though extremely poorly supported by MSIE. |
||
|
|
Usability-wise it is extremely important to always use <label> if you use input type radio or type checkbox. This lets the user click not just on the radio button or check box, but also on the caption that is next to it, which makes the clickable area for the control much bigger. Another trick that is often forgotten is that you can have multiple submit buttons on the same form, each with a different name and caption, and that which button is pressed is sent to the server. I see javascript being used a lot to put multiple action buttons on a form, where it is often not necessary. |
||
|
|
|
|
This certainly comes under the "tricks" heading... you can have a file that works as both a Javascript file and an HTML file. Because browsers allow external javascript files to have any file extension, you can have a file that opens in browsers as HTML but which can also be loaded as a script file:
This is handy when saving data to a file that users can open from their desktop but that can also be parsed by a web page. Here, the file "jshtml.html" calls itself as a script to show the javascript data it contains in a friendly way:
|
||
|
|
|
The Every html element can have its |
||||||||
|
|
|
Microformats. Although they are not a 'feature' of HTML (rather an application of it), they add an important semantic layer on top of existing data. |
||
|
|
|
|
:) |
||
|
|
|
I've been marking up HTML documents for a LONG time, and this one blew me away recently. When I link to particular place in a page, section headings for example, I use the anchor tag with the name attribute:
Then I refer to it like so:
What I didn't realize, until I was researching something else in the W3C HTML standard, is that I can achieve the same thing with much less mess and typing by assigning an
The same link works as before, but the page's markup is much cleaner:
All modern browsers will work with this feature, and it's been part of the HTML standard since HTML 4.0 back in 1997. I've really got to spend the weekend reading the whole standard! |
||
|
|
|
wbr: tells the browser that if it has to break a word, this is the place to do it, but otherwise is invisible. |
||
|
|
|
|
On more than one occasion I have found the <thead> and <th> elements invaluable for building tables of data. So often I see people just "bold" the first row of a table's body. Also, it is overlooked that a table can have more than one <tbody> element. While I haven't specifically found this valuable yet, it's a cool feature just waiting to be exposed! |
|||
|
|
|
Aligns numbers in a table column to the decimal point. Much nicer than having to manually pad the data with zeroes or non-breaking spaces. The reason it's underused... no browser support! :( |
||
|
|
|
|
I like the |
||
|
|
|
|
The <noscript> tag, so you can at least provide a "this site requires JavaScript" style message to those people with scripting turned off. Better to support such users properly, of course, but the reality is that for many projects you won't have the time. |
||
|
