menu
[ Updated threads · New messages · Members · Forum rules · Search · RSS ]
  • Page 1 of 1
  • 1
Coredownloadz Forum » Web developments » Programming Softwares » 10 Rare HTML Tags
10 Rare HTML Tags
guitarmantraDate: Thursday, 2009-06-04, 7:13 AM | Message # 1
Colonel
Group: Administrators
Messages: 220
Awards: 3
Reputation: 2
Status: Offline
10 Rare HTML Tags You Really Should Know

Web developers these days are often expected to know and work in multiple languages. As a result, it's tricky to learn everything a language has to offer and easy to find yourself not utilizing the full potential of some more specialized but very useful tags.
Unfortunately we haven't been tapping into the full potential of these more obscure HTML tags as of late. But it's never too late to get back into the game and start writing code that taps into the power of some under-used tags.
Here are ten of some of the most underused and misunderstood tags in HTML. While they might be less familiar, they're still quite useful in certain situations.

1. <cite>

All of us will be familiar with the <blockquote> tag, but did you know about <blockquote>'s little brother <cite>? <cite> allows you to define the text inside of the element as a reference. Typically the browser will render the text inside of the <cite> tag in italics, but this can be changed with a touch of CSS.
The <cite> tag is really useful for citing bibliographic and other site references. Here's an example of how to use the cite tag in a paragraph:
David Allen's breakthrough organization book Getting Things Done has taken the web by storm.

2. <optgroup>

The <optgroup> tag is a great way to add a little definition between groups of options inside a select box. If you needed to group movie listings by time, for example, then it would look like this:
Showtimes
Twister Napoleon Dynamite What About Bob? Be Kind Rewind Stranger Than Fiction

Live demo:
Showtimes Twister Napoleon Dynamite What About Bob? Be Kind Rewind Stranger Than Fiction
This allows the select list to visually separate the movie listings.

3. <acronym>

The <acronym> tag is a way to define or further explain a group of words. When you hover over text that has the <acronym> tag used, a box appears below with the text from the title tag. For example:
The microblogging site Twitter has recently struggled with downtimes.

Live demo:
SEO is full of trickery and magic.

4. <address>

The <address> tag is quite an obscure little tag, but that doesn't mean it isn't useful! As the name implies, <address> allows you to semantically markup addresses in HTML. The nifty little tag will also italicize all of the data within the brackets, though the style can easily be changed through simple CSS.
Glen Stansberry
1234 Web Dev Lane
Anywhere, USA


www.coredownloadz.ucoz.com
 
guitarmantraDate: Thursday, 2009-06-04, 7:14 AM | Message # 2
Colonel
Group: Administrators
Messages: 220
Awards: 3
Reputation: 2
Status: Offline
5. <ins> and <del>

If you're wanting to display editing revisions with with markup, <ins> and <del> are just the ticket. Like the name implies, <ins> highlights what's been added to the document with an underline, and <del> shows what's been taken out with a strikethrough.
John likes LOVES his new iPod.

Live demo:
John likes LOVES his new iPod.

6. <label>

Form elements seem the easiest to forget when marking up a document. Of the form elements, one of the most forgotten is the <label> tag. Not only is it a quick way to note the label's text, the <label> tag can also pass a "for" attribute to specify which element is to be given the label. Not only are these <label> tags great for styling, they also allow you to make the caption clickable for the associated element.
Username

7. <fieldset>

Fieldset is a nifty little attribute that you can add to your forms to logically group form elements. Once applied the <fieldset> tag draws a box around the elements within the fieldset. Bonus points for adding a <label> tag within the fieldset to define the title of the group.

Are You Smarter Than a 5th Grader?
Yes

No

Live demo:
Are You Smarter Than a 5th Grader? Yes No

8. <abbr>

The <abbr> tag is much akin to the <acronym> tag, except the <abbr> tag is only used to define abbreviated words. Just like <acronym>, you define a title within the tag. When a visitor hovers over the abbreviated text, the full definition appears below. The <abbr> tag is rarely used, but the benefits are many for screen readers, spellcheckers and search engines.
Sgt. Pepper's Lonely Hearts Club is my favorite album.

Live demo:
Sgt. Pepper's Lonely Hearts Club is my favorite album.

9. rel

Rel can be an insanely useful attribute, as any HTML element can have a rel applied to it. It's helpful for passing extra variables that aren't otherwise specified. This is helpful when using Javascript with your HTML. If you have a link that you want to edit inline, you might add:
This link is editable
The Javascript might be looking for a link with the rel attribute "clickable", and it knows to apply some Ajax and allow it to be edited inline. This is one of many techniques you can use with the rel attribute, as the possibilities are endless.

10. <wbr>

The <wbr> tag is an incredibly obscure tag. To be honest, I doubt many of you have come into contact with the tag, as it's hardly ever used. (Truthfully, I hadn't seen the tag before I started researching this article.) Essentially, the tag allows you to specify a place where you think a line break might be useful, but only if needed. This tag is unique as it relies on the discretion of the browser to insert the linebreak, if needed. It's perfect for creating layouts that you want to avoid having horizontal scrollbars.
If you were wanting to achieve the same effect but without using the <wbr> tag, you could also try ​ or **. It should be noted that none of these tags have full support across all browsers.

How do you say Supercalifragilisticexpialidocious?

Author: Glen Stansberry


www.coredownloadz.ucoz.com
 
Coredownloadz Forum » Web developments » Programming Softwares » 10 Rare HTML Tags
  • Page 1 of 1
  • 1
Search: