Underutilized HTML tags
I’ve been doing quite a lot of web and interface design over the last few weeks. I still code HTML and CSS by hand and find tools like Dreamweaver get in my way and don’t really fit ASP.NET or Ruby on Rails. I develop Ruby on Rails using Gedit and ASP.NET using the Microsoft Visual Studio. Gedit is a text editor and Microsoft Visual Studio is retarded when in comes to HTML design.
Anyway I digress… below are some underutilized and a few new HTML tags. Please be careful when using these because some don’t work in all the browsers and I am way to lazy to tell you which work with what browser.
and
<abbr title="National Aeronautics and Space Administration">NASA</abbr> is an <acronym title="United States of America">USA</acronym> agency.
and
<del>This text is deleted</del>, <ins>while this text is inserted</ins>
, and
, and
<q>I want to <q>quote</q> the quote</q> <cite>This is a cited reference source</cite> <dfn>Some nice definition</dfn>
<select> <optgroup label="Numbers"> <option>One</option> <option>Two</option> <option>Three</option> <optgroup label="Letters"> <option>A</option> <option>B</option> <option>C</option> </optgroup> </select>
, , , , and <xmp>
, , , , and No comments
<code>This is some code text</code> <samp>This is a sample</samp> <kbd>Example of keyboard input</kbd> <tt>Some teletype text</tt> <var>declare a nice variable</var> <xmp>Show some html tag like <p>paragraph</p></xmp>