1. GENERAL TAGS
This is my first web page.
<HTML>
<HEAD>
<TITLE> Title Web Page </TITLE>
</HEAD>
<BODY>
This is my first web page.
</BODY>
</HTML>
|
2. TEXT EDIT
<h2> header level 2 </h2> <h5> header level 5 </h5> |
first paragraph
second paragraph
CODE: <P> first paragraph </P> <P> second paragraph </P> |
To be <BR> or not to be |
To be
or not to be.....
that is the question.
<PRE>
To be
or not to be.....
that is the question.</PRE>
|
<B> bold </B> |
<I> italic </I> |
<U> underlined </U> |
<font face="tahoma"> Font text: Times new roman </font> <font size="8"> Font size: 8 </font> <font color="blue"> Font color: blue </font> |
3. LIST
- Unordered list: Unordered list: <UL> <LI> first <LI> second <LI> third </UL> |
Ordered list: <OL> <LI> first <LI> second <LI> third </OL> |
4. IMAGES
<IMG SRC="links/winter.jpg" width="300" align="right" border="5"> |
5. LINKS
- Link to a file: see file <A href="links/winter.jpg"> see file </A> |
<A href="http://www.etsav.upc.edu/personals/ewsems/"> EWSEMS </A> |
<A href="../ba14.html"> Teoretichal Approach </A> <A href="../ba13/figueres/index_a.html"> Figueres Market </A> |
<A href="mailto:writetome@writetome.com"> contact </A> |
6. GRIDS
| FIRST ROW, FIRST CELL | FIRST ROW, SECOND CELL | SECOND ROW, FIRST CELL | SECOND ROW, SECOND CELL |
<TABLE BORDERCOLOR="SILVER" WIDTH=75% BORDER=1> <TR> <TD> FIRST ROW, FIRST CELL</TD> <TD> FIRST ROW, SECOND CELL</TD> </TR> <TD> SECOND ROW, FIRST CELL</TD> <TD> SECOND ROW, SECOND CELL</TD> </TR> </TABLE> |