When referencing other pages or graphics on the web, you must know the complete URL of the source in order to create a link to it. However, depending on where the resource is located, you may be able to speed up the loading of your page by using relative references.
<img src="picture.gif">
<img src="my_graphics/picture.gif">
<img src="/not_my_images/picture.gif">
<img src="http://www.where.com/images/picture.gif">
<html> <head> <title>HTML codes for a web page</title> </head> <body> place your HTML code here </body> </html>
<b>boldface</b> boldface |
<i>italic</i> italic |
<u>underline</u> underline |
<h1>Heading 1</h1>
Heading 1 |
<h2>Heading 2</h2>
Heading 2 |
<h3>Heading 3</h3>
Heading 3 |
<h4>Heading 4</h4>
Heading 4 |
<h5>Heading 5</h5>
Heading 5 |
<h6>Heading 6</h6>
Heading 6 |
<img src="/images/paw_blue.gif" alt="fiu paw print">
<img src="/images/paw_blue.gif" alt="fiu paw print" align =
left>
<img src="/images/paw_blue.gif" alt="fiu paw print" align =
right>
<a href="http://www.fiu.edu">FIU Home Page</a>
a href="http://www.fiu.edu"><img src="/images/paw_blue.gif"
alt="fiu paw print">FIU Home Page</a>
<hr>
first line<br>second line<br>third line
first line
second line
third line
<p>Paragraph 1<p>Paragraph 2<p>Paragraph 3
Paragraph 1
Paragraph 2
Paragraph 3
Ordered List | |
---|---|
<OL> <LI>First <LI>Second <LI>Third </OL> |
|
Unordered List | |
<UL> <LI>Red <LI>Green <LI>Blue </UL> |
|
Definition List | |
<DL> <DT>Miami <DD>A big city <DT>Maine <DD>A state <DT>Marne <DD>A river </DL> |
|
Here is the code that will create the table at the bottom of the page.
<TABLE class="em-border"> <TR> <TD rowspan="2"> <IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"><BR> <IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"></TD> <TD colspan="2"> <IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"> <IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"></TD> </TR> <TR> <TD rowspan="2" colspan="2"> <IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"> <IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"><BR> <IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"> <IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"></TD> </TR> <TR> <TD><IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"></TD> </TR> <TR> <TD><IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"></TD> <TD><IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"></TD> <TD><IMG ALT="JCCL Logo" SRC="http://www.cis.fiu.edu/images/jcclbutton.png"></TD> </TR> </TABLE>
|
||