Site Reference Forums

You are not logged in.

#1 2005-02-23 00:37:08

mark
Administrator
Registered: 2004-10-08
Posts: 2559
I've been thanked 4 times.

Thank me 

Uncommon HTML Tags

I am looking to develop a list of HTML tags that are not often used by website owners, but are still important to use in good website design.  Please add to this list as you wish, but do so in the following format:

<TAG> - Explanation of what the tag does. Example Use.

<acronym> - The acronym tag allows for a website to explain what an acronym stands for.  For example, the acronym SEO stands for Search Engine Optimization.  However, when the spider comes to your website, all it will see is SEO which may mean various things.  The acronym tag will allow you to add this keyword to your text.  The use of this tag should look like this: <acronym title=”search engine optimization”>seo</acronym>.

<caption> - Although using tables to determine the layout of your website is becoming a practice that will soon be extinct, tables will still be necessary.  The caption tag allows you to identify what a specific table is about.  An example: <caption>Table 3.2.  Raw Sales Data</caption>

<code> - If you ever want to display programming code on your site, you should use the code tag which will set that text off as being programming code.  Example: <code><?php echo “this is a code example”;?></code>

The H Tags – H1 tags have become popular in SEO circles once website owners learned that Google did pay attention to this tag.  However, there are actually 6 different heading tags.  The H1 tag is the most important while the H6 tag is the least important.  If a search engine were to try to form a table of contents from a website, it should be able to do so from the H tags.


DebtManagementTak.com - Earn Money While Learning Debt Reduction Strategies

Today's article: A Unique Look at Adwords Advertising

Offline

 

#2 2005-02-23 11:56:18

Mutilated1
Member
From: Pell City, Alabama USA
Registered: 2004-11-17
Posts: 2068
I've been thanked 5 times.

Thank me Website
Buy me a beer

Re: Uncommon HTML Tags

<EM> - Indicates Emphasis.  Browser will render this as bolder text.

Example:  <em>This Text Would Appear somewhat bold</em>             

<STRONG> - Indicates stronger Emphasis.

Example:   <strong>This would appear even bolder</strong>           

<CITE> - Indicates that the enclosed text represents a citation of another work

Example:  <csite>Doe, J. (). Blah blah. 2nd Ed ed. : Publisher.</csite>             

<DFN> - Indicates that the attribute defines the enclosed tag.  Also cause the browser to render in Itallics

Example:   <dfn title="Brutal Death Metal Band">Cannibal Corpse</dfn> is the top selling Death Metal Band of All Time.           

<SAMP> - Indicates that the enclosed text is sample output for example from a script, an error message, a directory listing something like that.  Don't use it with TrueType fonts or it looks funny.

Example: <samp>RUNTIME ERROR:  -5<samp>             

<KBD> - Indicates text that you want the user to type

Example:  To remove the file type this: <kbd>rm ./-foo </kbd>

Last edited by Mutilated1 (2005-02-23 18:31:53)


CANNIBAL CORPSE - DEATH METAL - 15 YEAR KILLING SPREE!
TombOfTheMutilated.NET - Destroying The Minds of America's Youth Since 2001

Offline

 

#3 2005-02-23 14:06:30

mark
Administrator
Registered: 2004-10-08
Posts: 2559
I've been thanked 4 times.

Thank me 

Re: Uncommon HTML Tags

<fieldset> - Used for forms.  Unlike the <form> element which is functional, <fieldset> allows you to define specific parts of forms.  For example, within a single form, you may have an address section, a credit card section, website information section, etc.

Example: - <fieldset>
<legend>Personal information</legend>
input elements go here
</fieldset>


<legend> - Used with fieldsets to label what a set of fields is about.  See example above.


DebtManagementTak.com - Earn Money While Learning Debt Reduction Strategies

Today's article: A Unique Look at Adwords Advertising

Offline

 

#4 2005-03-10 06:36:04

aspiramedia
Member
From: Nottingham
Registered: 2005-01-19
Posts: 375
I've been thanked 0 times.

Thank me Website

Re: Uncommon HTML Tags

Not exactly html, but it's long-lost css:

p:first-letter {
font-weight: bold;
}

A selector to change the style of the first letter of every paragraph.

Andy.

Offline

 

#5 2005-03-10 08:19:27

mark
Administrator
Registered: 2004-10-08
Posts: 2559
I've been thanked 4 times.

Thank me 

Re: Uncommon HTML Tags

Andy,

Isn't that CSS2?  Does IE support that?


DebtManagementTak.com - Earn Money While Learning Debt Reduction Strategies

Today's article: A Unique Look at Adwords Advertising

Offline

 

#6 2005-03-10 09:07:44

aspiramedia
Member
From: Nottingham
Registered: 2005-01-19
Posts: 375
I've been thanked 0 times.

Thank me Website

Re: Uncommon HTML Tags

yes sorry - css2. IE supports it - tried it on IE6. Firefox obviously does too.

Was one of the ones that's so rarely used. I wonder if if works for the first word too?

Offline

 

#7 2005-04-03 16:18:13

akramquraishi
New member
Registered: 2005-04-03
Posts: 1
I've been thanked 0 times.

Thank me Website

Re: Uncommon HTML Tags

rel="nofollow"  --  this is a new attribute to the anchor tag.

The search engines will not follow the hyperlinks with this attribute, which will stop your PR from transferring to those links. This attribute was especially made to reduce the comment spamming in the blogs.

This attribute was found by Google earlier this year, Yahoo Search and MSN search are also supporting it.

read more about it on Google

http://www.google.com/googleblog/2005/0 … -spam.html


RapidFeeds - A Free online service, which helps anyone, create, edit, publish and track RSS feeds. Sign Up for your FREE account and learn how to Create & Publish your own RSS Feeds today!

Offline

 

#8 2007-03-17 14:01:08

atwhatcost
Member
From: Philadelphia, PA
Registered: 2004-10-20
Posts: 686
I've been thanked 11 times.

Thank me Website
Buy me a beer

Re: Uncommon HTML Tags

Nothing to add here, but I figure, since it's two years later, I bet some know more to add to the list. (Just bumping this up, in hopes of more html knowledge.rodna

Offline

 

#9 2007-03-17 14:46:20

griffinsbridge
Member
From: York, England
Registered: 2005-11-04
Posts: 595
I've been thanked 11 times.

Thank me Website

Re: Uncommon HTML Tags

atwhatcost wrote:

Nothing to add here, but I figure, since it's two years later, I bet some know more to add to the list. (Just bumping this up, in hopes of more html knowledge.rodna

Hey, Thanks for bumping this. very interesting stuff.

I knew a few of these, like <em> and <strong> but didnt know there was actually any difference. I always just stick with <b> as it looks the same. Maybe i should change my ways alittle, <food4thought>might have some decent SEO effects.</food4thought>


So many pages, so little time.

Offline

 

#10 2007-03-19 10:09:55

Steven_A_S
Member
From: San Antonio, TX
Registered: 2006-08-07
Posts: 449
I've been thanked 21 times.

Thank me Website

Re: Uncommon HTML Tags

actually, <em> makes text italics, not bold.

In the realm of tables (preferably real tables instead of formatting tables, but works both ways)

<col /> for formatting specific columns - allows you to accurately set column widths (usually in css) before the table is drawn

<colgroup> for formatting a group of columns

EDIT: I should mention that the <col /> tag should be used within a <colgroup> tag

Last edited by Steven_A_S (2007-03-22 15:06:58)

Offline

 

#11 2007-03-19 10:56:51

Northie
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2607
I've been thanked 63 times.

Thank me Website
Buy me a beer

Re: Uncommon HTML Tags


Now taking free-lance inquiries; Please contact me for more details
Internet Marketing Books
Promote Yourself on Site Reference!

Offline

 

#12 2007-03-19 15:42:51

MrStitch
Member
Registered: 2006-10-24
Posts: 1079
I've been thanked 12 times.

Thank me 
Buy me a beer

Re: Uncommon HTML Tags

Wow... talk about digging something out of the grave! lol

However, when I was reading it, I thought that the <cite> tag actually might have some use, depending on G-bots reasoning of course.

Not that I have this problem.... but, wasn't there some big hissy that occurred cause drop shippers were using the manufacturers product description, then getting flagged for duplicate content?

Wouldn't you use this tag, or something like it, to clarify that it's not your own writing?

Offline

 

#13 2007-03-20 02:53:27

nybc
Member
Registered: 2006-12-15
Posts: 162
I've been thanked 6 times.

Thank me Website

Re: Uncommon HTML Tags

<sup>...</sup> defines superscript text

Offline

 

#14 2007-03-22 13:49:47

atwhatcost
Member
From: Philadelphia, PA
Registered: 2004-10-20
Posts: 686
I've been thanked 11 times.

Thank me Website
Buy me a beer

Re: Uncommon HTML Tags

nybc wrote:

<sup>...</sup> defines superscript text

Oh goodie! Digging this out is working! I love <col> idea! Can't wait until CSS stops looking Greek, now that html is beginning to look English to me!

This is a question, not an addition -- if <sup>...</sup> = superscript text, then, by any chance, does <sub> </sub> = subscript text?!

Offline

 

#15 2007-03-22 15:03:24

Steven_A_S
Member
From: San Antonio, TX
Registered: 2006-08-07
Posts: 449
I've been thanked 21 times.

Thank me Website

Re: Uncommon HTML Tags

Ding, ding, ding...   Give the woman a prize! applause

Yep, that is a valid assumption.  The <sub> tag is for subscript.

(and no, I'm not trying to be mean gloria )

Offline

 

#16 2007-03-23 10:00:48

Ryan_steyn
Member
From: South Africa, Port Elizabeth
Registered: 2006-08-23
Posts: 1710
I've been thanked 28 times.

Thank me 
Buy me a beer

Re: Uncommon HTML Tags

i thought the <em> tag was used to define the size of text, in place of the size attribute.... im sure i had to use it like that somewhere..... who has time to google it?


"Humans are by far the most fascinating creatures, in a universe with no boundaries and a world with so much unfound wonder we are the only entities capable of creating boredom"

Offline

 

#17 2007-03-23 10:20:52

Steven_A_S
Member
From: San Antonio, TX
Registered: 2006-08-07
Posts: 449
I've been thanked 21 times.

Thank me Website

Re: Uncommon HTML Tags

<em> stands for Emphasis.  I do use it from time to time when I want italics (instead of the older <i> tag).

You may be thinking about the em font measurement in CSS used like:

p {font-size:2em;}

Last edited by Steven_A_S (2007-03-23 10:23:46)

Offline

 

#18 2007-03-23 11:13:58

sis651
Member
From: Turkey/Tekirdağ/Muratl&#3
Registered: 2006-11-09
Posts: 197
I've been thanked 0 times.

Thank me Website

Re: Uncommon HTML Tags

<RTP1></RTP1>Rank This Page Number 1 for the search terms written between tags. big_smile
Isn't there any such tags? If there were it would be great big_smile


Ferhad'ın Blogu(F Tipi Blog)IMy Panoramio Album
Manolya Hotel North Cyprus
A vinegar seller with a smiling face makes more money than a honey seller with a sour face.

Offline

 
Never
Sponsored Results


Board footer

Powered by PunBB
© Copyright 2002–2008 Rickard Andersson