HTML Referencia, Susy
HTML 101 - "quick reference".

^ Basic Elements - Elementos básicos
  Document Type  <HTML></HTML> (beginning and end of file) 
  Title  <TITLE></TITLE> (must be in header) 
  Header  <HEAD></HEAD> (descriptive info, such as title) 
  Body  <BODY></BODY> (bulk of the page) 
 

^ Presentation Formatting - Formato de presentación
  Bold  <B></B>
  Italic  <I></I>
  Underline  <U></U> (not widely implemented yet) 
  Strikeout  <STRIKE></STRIKE> (not widely implemented yet) 
  Strikeout  <S></S> (not widely implemented yet) 
  Subscript  <SUB></SUB>
  Superscript  <SUP></SUP>
  Center  <CENTER></CENTER> (for both text and images) 
  Blinking  <BLINK></BLINK> (the most derided tag ever) 
  Font Size  <FONT SIZE=?></FONT> (ranges from 1-7) 
  Change Font Size  <FONT SIZE="+|-?"></FONT>
  Base Font Size  <BASEFONT SIZE=?> (from 1-7; default is 3) 
  Font Color  <FONT COLOR="#$$$$$$"></FONT>
  Select Font  <FONT FACE="***"></FONT>
  Multi-Column Text  <MULTICOL COLS=?></MULTICOL>
  Column Width  <MULTICOL WIDTH=?></MULTICOL>
  Spacer  <SPACER>
  Spacer Type  <SPACER TYPE=horizontal| vertical|block>
  Spacer Size  <SPACER SIZE=?>
  Spacer Dimensions  <SPACER WIDTH=? HEIGHT=?>
  Spacer Alignment  <SPACER ALIGN=left|right|center>
 

^ Links and Graphics - Enlaces y gráficos
  Link Something  <A HREF="URL"></A>
  Link to Target  <A HREF="URL#***"></A> (if in another document) 
<A HREF="#***"></A> (if in current document) 
  Target Window  <A HREF="URL" TARGET="***| |_blank|_self|_parent|_top"></A>
  Display Image  <IMG SRC="URL">
  Alignment  <IMG SRC="URL" ALIGN=TOP|BOTTOM|MIDDLE|LEFT|RIGHT>
  Alignment  <IMG SRC="URL" ALIGN=TEXTTOP| ABSMIDDLE|BASELINE|ABSBOTTOM>
  Alternate  <IMG SRC="URL" ALT="***"> (if image not displayed) 
  Dimensions  <IMG SRC="URL" WIDTH=? HEIGHT=?> (in pixels) 
  Border  <IMG SRC="URL" BORDER=?> (in pixels) 
  Runaround Space  <IMG SRC="URL" HSPACE=? VSPACE=?> (in pixels) 
 

^ Dividers - Divisores
  Paragraph  <P></P> (closing tag often unnecessary) 
  Align Text  <P ALIGN=LEFT|CENTER|RIGHT></P>
  Line Break  <BR> (a single carriage return) 
  Clear Textwrap  <BR CLEAR=LEFT|RIGHT|ALL>
  Horizontal Rule  <HR>
  Alignment  <HR ALIGN=LEFT|RIGHT|CENTER>
  Thickness  <HR SIZE=?> (in pixels) 
  Width  <HR WIDTH=?> (in pixels) 
  Width Percent  <HR WIDTH="%"> (as a percentage of page width) 
  Solid Line  <HR NOSHADE> (without the 3D cutout look) 
No Break  <NOBR></NOBR> (prevents line breaks) 
 

^ Lists - Listas
Unordered List  <UL><LI></UL> (<LI> before each list item) 
Compact  <UL COMPACT></UL>
Bullet Type  <UL TYPE=DISC|CIRCLE|SQUARE> (for the whole list) 
<LI TYPE=DISC|CIRCLE|SQUARE> (this & subsequent) 
Ordered List  <OL><LI></OL> (<LI> before each list item) 
Compact  <OL COMPACT></OL>
Numbering Type  <OL TYPE=A|a|I|i|1> (for the whole list) 
<LI TYPE=A|a|I|i|1> (this & subsequent) 
Starting Number  <OL START=?> (for the whole list) 
<LI VALUE=?> (this & subsequent) 
Definition List  <DL><DT><DD></DL> (<DT>=term, <DD>=definition) 
Compact  <DL COMPACT></DL>
Menu List  <MENU><LI></MENU> (<LI> before each list item) 
Compact  <MENU COMPACT></MENU>
Directory List  <DIR><LI></DIR> (<LI> before each list item) 
Compact  <DIR COMPACT></DIR>
 

^ Backgrounds and Colors - Trasfondo y los colores
Tiled Bkground  <BODY BACKGROUND="URL">
Bkground Color  <BODY BGCOLOR="#$$$$$$"> (order is red/green/blue) 
Text Color  <BODY TEXT="#$$$$$$">
Link Color  <BODY LINK="#$$$$$$">
Visited Link  <BODY VLINK="#$$$$$$">
Active Link  <BODY ALINK="#$$$$$$">
 

^ Special Characters - Códigos especiales
(these must all be in lower case - estos deberán ser en letra minúscula)

Special Character  &#?;  (where ? is the ISO 8859-1 code) 
&lt;
&gt;
&amp;
&quot;
Registered TM  &reg;
Copyright  &copy;
Non-Breaking Space  &nbsp;
 

^ Tables - Tablas
Define Table  <TABLE></TABLE>
Table Border  <TABLE BORDER=?></TABLE>
Cell Spacing  <TABLE CELLSPACING=?>
Cell Padding  <TABLE CELLPADDING=?>
Desired Width  <TABLE WIDTH=?> (in pixels) 
Width Percent  <TABLE WIDTH="%"> (percentage of page) 
Table Row  <TR></TR>
Alignment  <TR ALIGN=LEFT|RIGHT| CENTER|MIDDLE|BOTTOM 
VALIGN=TOP|BOTTOM|MIDDLE>
Table Cell  <TD></TD> (must appear within table rows) 
Alignment  <TD ALIGN=LEFT|RIGHT| CENTER|MIDDLE|BOTTOM 
VALIGN=TOP|BOTTOM|MIDDLE>
No linebreaks  <TD NOWRAP>
Columns to Span  <TD COLSPAN=?>
Rows to Span  <TD ROWSPAN=?>
N1.1  Desired Width  <TD WIDTH=?> (in pixels) 
N1.1  Width Percent  <TD WIDTH="%"> (percentage of table) 
N3.0b  Cell Color  <TD BGCOLOR="#$$$$$$">
Table Header  <TH></TH> (same as data, except bold centered) 
Alignment  <TH ALIGN=LEFT|RIGHT| CENTER|MIDDLE|BOTTOM 
VALIGN=TOP|BOTTOM|MIDDLE>
No Linebreaks  <TH NOWRAP>
Columns to Span  <TH COLSPAN=?>
Rows to Span  <TH ROWSPAN=?>
N1.1  Desired Width  <TH WIDTH=?> (in pixels) 
N1.1  Width Percent  <TH WIDTH="%"> (percentage of table) 
N3.0b  Cell Color  <TH BGCOLOR="#$$$$$$">
Table Caption  <CAPTION></CAPTION>
Alignment  <CAPTION ALIGN=TOP|BOTTOM> (above/below table) 


^ Frames - Bordes divisorios
  Frame Document  <FRAMESET></FRAMESET> (instead of <BODY>
  Row Heights  <FRAMESET ROWS=,,,></FRAMESET> (pixels or %) 
  Row Heights  <FRAMESET ROWS=*></FRAMESET> (* = relative size) 
  Column Widths  <FRAMESET COLS=,,,></FRAMESET> (pixels or %) 
  Column Widths  <FRAMESET COLS=*></FRAMESET> (* = relative size) 
  Border Width  <FRAMESET BORDER=?>
  Borders  <FRAMESET FRAMEBORDER="yes|no">
  Border Color  <FRAMESET BORDERCOLOR="#$$$$$$">
  Define Frame  <FRAME> (contents of an individual frame) 
  Display Document  <FRAME SRC="URL">
  Frame Name  <FRAME NAME="***"|_blank|_self| _parent|_top>
  Margin Width  <FRAME MARGINWIDTH=?> (left and right margins) 
  Margin Height  <FRAME MARGINHEIGHT=?> (top and bottom margins) 
  Scrollbar?  <FRAME SCROLLING="YES|NO|AUTO">
  Not Resizable  <FRAME NORESIZE>
  Borders  <FRAME FRAMEBORDER="yes|no">
  Border Color  <FRAME BORDERCOLOR="#$$$$$$">
  Unframed Content  <NOFRAMES></NOFRAMES> (for non-frames browsers) 



| Home | Susy | Chat | Fotos | Pensamientos | HTML Referencia |
| E-mail | Links | | Pizarra de mensajes | Firma GB | Lee GB |
| Amor y Esperanza | La isla de Puerto Rico | Música en el Web |
Páginas diseñadas especialmente para:  | Nandito | Albert | Javis |

© 2001
Universolatino's Home Page
Derechos reservados © 1996-2001 por Susy ®