TAG list - preCharge Forums
It shows that you are unregistered. Please register with us by clicking Here
preCharge Forums


Nav Green LeftNav Right
preCharge Forums > Website Design & Development > Programming » TAG list


Reply
Tcat Right
 
LinkBack Thread Tools Display Modes Tcat Right
Old 07-29-2006   #1 (permalink)
alan86
Junior Member
 
alan86's Avatar
 
Join Date: Jul 2006
Age: 22
Posts: 10
Send a message via ICQ to alan86 Send a message via MSN to alan86
Default TAG list

General TAG



Document type
<HTML><HTML>
Beginning and end of file


Header
<HEAD></HEAD>
Descriptions


Document title
<TITLE></TITLE>
To insert into the header


Body
<BODY></BODY>
Body of file



Structure TAG



paragraph and chapter title
<Hn><Hn>
6 various levels of largeness and importance are possible H1, H2, ...


Title alignment
<Hn ALIGN="left|center|right"><Hn>



Block division
<DIV></DIV>
Used for part of text or paragraph


Block alignment
<DIV ALIGN="left|center|right|justify"></DIV>




TAG for text format



Bold
<B></B>



Italic
<I></I> or <EM></EM>



Underlined
<U></U>



Strikeout
<S></S>



Subscript
<SUB></SUB>



Superscript
<SUP></SUP>



Fixed font
<TT></TT>
Fixed spaces


Pre-formatted
<PRE></PRE>
It mantains original alignments


Width
<PRE WIDTH="n"></PRE>
In characters


Blinking
<BLINK></BLINK>



Font size
<FONT SIZE="n"></FONT>
Values between 1 and 7


Change font size
<FONT SIZE="+n|-n"></FONT>



Base font size
<BASEFONT SIZE="n">
From 1 up to 7, default is 3


Font color
<FONT COLOR="#nnnnnn"></FONT>
From #000000(black) to #FFFFFF(white)



TAG for link management



Simple link
<A HREF="url"></A>



Link to an anchor in the file
<A HREF="#xxxx|url#xxxx"></A>



Link with prefixed destination
<A HREF="url" TARGET="xxxx"></A>



Anchor definition
<A NAME="xxxx"></A>




TAG for target management(link destination)



Target of an anchor definition
<A HREF="url" TARGET="window_name">
Shows the link in the page indicated in the target


Base target
<BASE TARGET="window_name">
Sets by default the window indicated in the target


Target in a map
<AREA SHAPE="shape" COORDS="x,y,.."
TARGET="destination_window">

Shows the map link in the window indicated by the target


Target in a form
<FORM ACTION="url" TARGET="window_name">
Shows form result in the window indicated by the target


Special targets
TARGET="_blank"
TARGET="_self"
TARGET="_parent"
TARGET="_top"

Link in a blank window
Link in the same window
Link in the parent window
Link in the same window but fullscreen



TAG for image management



Image inserting
<IMG SRC="url">



Vertical alignment
<IMG SRC="url" ALIGN="top|middle|bottom">



Horizontal alignment
<IMG SRC="url" ALIGN="left|right|texttop|absmiddle|baseline">



Alternative text
<IMG SRC="url" ALT="xxxx">
When the image is not visible, the text is shown


Surfable map
<IMG SRC="url" ISMAP>
Requires a script


Surfable local map
<IMG SRC="url" USEMAP="url#xxxx">



Size
<IMG SRC="url" WIDTH="n" HEIGHT="n">
In pixel


Border
<IMG SRC="url" BORDER="n">
In pixel


Low resolution
<IMG SRC="url" LOWSRC="url">



Spaces
<IMG SRC="url" HSPACE="n" VSPACE="n">




TAG for maps



Map definition
<MAP NAME="xxxx"></MAP>
Describes the map


Map section
<AREA SHAPE="rect|circle|poly"
COORDS="x1,y1,x2,y2|cx,cy,r|x1,y1,x2,y2,..,xn,yn" HREF="url"|NOHREF>





TAG for paragraph and chapters



Paragraph
<P></P>
It leaves a space greater over and under


Alignment
<P ALIGN="left|center|right"></P>



Row interrupt
<BR>
New line



Horizontal line
<HR>



- Alignment
<HR ALIGN="left|center|right">



- Thickness
<HR SIZE="n">
In pixel


- Width
<HR WIDTH="n">
In pixel


- In percentage
<HR WIDTH="n%">
Percentage on page width


- No 3D
<HR NOSHADE>





If you want to know about:
- TAG for list
- TAG for background and colors
- TAG for form management
- TAG for table management
- TAG for frame management
you can find them here.
alan86 is offline   Reply With Quote


Old 07-29-2006   #2 (permalink)
Jamie
Senior Member
 
Jamie's Avatar
 
Join Date: Jul 2006
Location: Swansea, Wales, UK
Age: 20
Posts: 239
Default Re: TAG list

Ahhh....

Can we make these accessible and standardizeed please
  • Lowercase Tags
  • No style tags e.g. Font. These have been outdated for years, and years and years. CSS is used now
  • No style attributes e.g. Align. Again outdated. CSS is used now
  • Get some semantics in there. <i> is not the same as <em>. strong is a strong emphasis and em is a slight emphasis. b and i are outdated.
  • To be really accessible and standardised, the target attribute is non existant.
__________________
Jamie is offline   Reply With Quote

Old 07-29-2006   #3 (permalink)
alan86
Junior Member
 
alan86's Avatar
 
Join Date: Jul 2006
Age: 22
Posts: 10
Send a message via ICQ to alan86 Send a message via MSN to alan86
Default Re: TAG list

ok, i thought that em and strong were the same as i and b...
just a question, if I leave them adding that they are deprecated, is ok?
because much people doesn't know css and so they still use FONT tag for example.

could you please take a look at the other tags on my website and tell me which others are deprecated?
thanks.
alan86 is offline   Reply With Quote

Old 07-29-2006   #4 (permalink)
Jamie
Senior Member
 
Jamie's Avatar
 
Join Date: Jul 2006
Location: Swansea, Wales, UK
Age: 20
Posts: 239
Default Re: TAG list

Right...in worl atm so I wont register until I get home but guessing:

All background tags are depreciated
All frame tags are depreicated.
All style attributes e.g. align etc are gone.
Form tags are very structured now. You need fieldset and legend before starting the labels, input and textareas.
Dont forget that some tags <br/> and <hr/> need to be self closing. e.g. <br/> NOT <BR>

Jamie
__________________
Jamie is offline   Reply With Quote

Old 07-29-2006   #5 (permalink)
alan86
Junior Member
 
alan86's Avatar
 
Join Date: Jul 2006
Age: 22
Posts: 10
Send a message via ICQ to alan86 Send a message via MSN to alan86
Default Re: TAG list

Quote:
Originally Posted by Jamie
in worl atm
what does this mean?

ok I'll change and set up what's wrong.
thanks.
alan86 is offline   Reply With Quote

Old 07-29-2006   #6 (permalink)
abhisar
Junior Member
 
Join Date: Jul 2006
Posts: 27
Send a message via Yahoo to abhisar
Default Re: TAG list

dESCRIPTION list
<DL>
<DT>ITEM</DT>
<DD>DESCRIPTION</DD>
</DL>

ORDERED LIST
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>

UNORDERED LIST

<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>
__________________
SIMPLY THE BEST
abhisar is offline   Reply With Quote

Old 07-29-2006   #7 (permalink)
Jamie
Senior Member
 
Jamie's Avatar
 
Join Date: Jul 2006
Location: Swansea, Wales, UK
Age: 20
Posts: 239
Default Re: TAG list

Quote:
Originally Posted by alan86
Quote:
Originally Posted by Jamie
in worl atm
what does this mean?

ok I'll change and set up what's wrong.
thanks.
Sorry, that meant, Im in work at the moment, which is still true...

And yay for the lists....

Jamie
__________________
Jamie is offline   Reply With Quote

Old 07-30-2006   #8 (permalink)
Anman
 
Posts: n/a
Default Re: TAG list

Quote:
Originally Posted by Jamie
[*]No style tags e.g. Font. These have been outdated for years, and years and years. CSS is used now
Are you kidding? Font tags are the best things SINCE css. Hello css, I want to have a quick colour change for my text, I dont want to have to create a whole new class just for one colour change or one font change.

FONT tags are STILL a great tool. I cant seem to understand why people cant accept this. More so, a lot of new people or people who dont know how to use CSS will WANT to use font tags. Its like me saying we arent going to give pencils to primary school children anymore because pens and white out are far more seperior.
  Reply With Quote

Old 07-30-2006   #9 (permalink)
abhisar
Junior Member
 
Join Date: Jul 2006
Posts: 27
Send a message via Yahoo to abhisar
Default Re: TAG list

bgcolors

<body bgcolor="#000000">
<body bgcolor="rgb(0,0,0)">
<body bgcolor="black">
To know code of any color pm me.

bgimages
<body background="clouds.gif">
<body background="http://abhisar.wen.ru/logo.gif">
Note: If you want to use a background image, you should keep in mind:
Will the background image increase the loading time too much?
Will the background image look good with other images on the page?
Will the background image look good with the text colors on the page?
Will the background image look good when it is repeated on the page?
Will the background image take away the focus from the text?

__________________
SIMPLY THE BEST
abhisar is offline   Reply With Quote

Old 07-30-2006   #10 (permalink)
Jamie
Senior Member
 
Jamie's Avatar
 
Join Date: Jul 2006
Location: Swansea, Wales, UK
Age: 20
Posts: 239
Default Re: TAG list

Quote:
Originally Posted by Anman
Quote:
Originally Posted by Jamie
[*]No style tags e.g. Font. These have been outdated for years, and years and years. CSS is used now
Are you kidding? Font tags are the best things SINCE css. Hello css, I want to have a quick colour change for my text, I dont want to have to create a whole new class just for one colour change or one font change.

FONT tags are STILL a great tool. I cant seem to understand why people cant accept this. More so, a lot of new people or people who dont know how to use CSS will WANT to use font tags. Its like me saying we arent going to give pencils to primary school children anymore because pens and white out are far more seperior.
Um...No. Font tags are extremly outdated. They cloudup the markup and create inaccessible areas. If you are changing the colour of your text then there must be a reason. This reason should be semantically marked up adnd not just coourfully marked up. If for example the colour change was to emphasis it more then a strong or em tag should be used. A style can then be applied to this later on.

All font tags do it physically changed the markup, and the problem with that is that markup needs to be semantic and not physical in nature, this is to ensure that both humans and computers can understand the markup, and to ensure that the markup can be transferred across several different kinds of computers, operating systems, browsers etc.

If the web is ever going to become better that it is then semantic markup must grow, although more people and machines to access and understand the content.

Jamie
__________________
Jamie is offline   Reply With Quote

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
SMF Wish List? SMF For Free Forum Management 3 08-22-2006 04:06 AM
need a list of... Spira Forum Management 2 01-19-2006 01:32 PM


footer left
All times are GMT. The time now is 07:00 AM.

DISCLAIMER: preCharge Risk Management is not responsible for any opinions, advice or comments expressed on the preCharge Community Forums.
preCharge® is a registered trademark of preCharge Risk Management | chargeback protection | Merchant Account Blog

Powered by vBulletin
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0 RC6

Loans | Car Credit | Credit Cards | Share Prices | Car Insurance

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49