Sie sind auf Seite 1von 8

IMAGE THUMBNAIL

Next, you need to create at least two separate HTML pages - an HTML page with your full-size image, and a page with your thumbnail
image(s).
For example, the image below is a thumbnail JPEG image of "Polly The Parrot" and is displayed using the HTML code:
<IMG SRC="bird.jpg" Width="164" Height="110" Alt="Bird Thumbnail" Border="0">

A link to display the full image is added with the HTML code below:
<A HREF="reduce-down-nails2.htm"><IMG SRC="bird.jpg" Width="164" Height="110" Alt="Bird Thumbnail" Border="0"></a>
How to...Upload your pages...to the Web
http://www.pagetutor.com/upload/index.html

Download FTP Explorer


http://www.pagetutor.com/downloads/ftpex.html

HTML Tags Chart


http://www.web-source.net/html_codes_chart.htm
HTML Tags Chart
To use any of the following HTML tags, simply select the HTML code you'd like and copy and paste it into your web page.

Tag Name Code Example Browser View

<!-- comment <!--This can be viewed in the HTML part of a document--> Nothing will show (Tip)

<A - anchor <A HREF="http://www.yourdomain.com/">Visit Our Site</A> Visit Our Site (Tip)

<B> bold <B>Example</B> Example

<BIG> big (text) <BIG>Example</BIG> Example (Tip)

body of
<BODY> HTML <BODY>The content of your HTML page</BODY> Contents of your web page (Tip)
document

The contents of your web page


<BR> line break The contents of your page<BR>The contents of your page
The contents of your web page

<CENTER> center <CENTER>This will center your contents</CENTER> This will center your contents

<DL>
Definition Term
<DT>Definition Term
definition <DD>Definition of the term Definition of the term
<DD>
description <DT>Definition Term Definition Term
<DD>Definition of the term
Definition of the term
</DL>

<DL>
Definition Term
<DT>Definition Term
definition <DD>Definition of the term Definition of the term
<DL>
list <DT>Definition Term Definition Term
<DD>Definition of the term
Definition of the term
</DL>

<DL>
Definition Term
<DT>Definition Term
definition <DD>Definition of the term Definition of the term
<DT>
term <DT>Definition Term Definition Term
<DD>Definition of the term
Definition of the term
</DL>

This is an Example of using


<EM> emphasis This is an <EM>Example</EM> of using the emphasis tag
the emphasis tag

embed <EMBED src="yourfile.mid" width="100%" height="60"


<EMBED>
object align="center"> (Tip)

<EMBED src="yourfile.mid" autostart="true" hidden="false"


Music will begin playing when your
embed loop="false">
<EMBED> page is loaded and will only play one
object <noembed><bgsound src="yourfile.mid"
time. A control panel will be
loop="1"></noembed>
displayed to enable your visitors to
stop the music.

<FONT> font <FONT FACE="Times New Roman">Example</FONT> Example (Tip)

<FONT FACE="Times New Roman"


<FONT> font Example (Tip)
SIZE="4">Example</FONT>

<FONT FACE="Times New Roman" SIZE="+3"


<FONT> font Example (Tip)
COLOR="#FF0000">Example</FONT>
<FORM action="mailto:you@yourdomain.com">
Name: <INPUT name="Name" value="" size="10"><BR> Name: (Tip)
<FORM> form Email: <INPUT name="Email" value="" size="10"><BR> Email:
<CENTER><INPUT type="submit"></CENTER>
</FORM> Submit Query

<H1> heading 1 <H1>Heading 1 Example</H1> Heading 1 Example

<H2> heading 2 <H2>Heading 2 Example</H2> Heading 2 Example

<H3> heading 3 <H3>Heading 3 Example</H3> Heading 3 Example

<H4> heading 4 <H4>Heading 4 Example</H4> Heading 4 Example

<H5> heading 5 <H5>Heading 5 Example</H5> Heading 5 Example

<H6> heading 6 <H6>Heading 6 Example</H6> Heading 6 Example

heading of
<HEAD> HTML <HEAD>Contains elements describing the document</HEAD> Nothing will show
document

horizontal Contents of your web page (Tip)


<HR> <HR>
rule
Contents of your web page

Contents of your web page


horizontal
<HR> <HR WIDTH="50%" SIZE="3">
rule
Contents of your web page

Contents of your web page


horizontal
<HR> <HR WIDTH="50%" SIZE="3" NOSHADE>
rule
Contents of your web page

<HR> Contents of your web page


horizontal
(Internet <HR WIDTH="75%" COLOR="#FF0000" SIZE="4">
rule
Explorer) Contents of your web page

<HR> Contents of your web page


horizontal
(Internet <HR WIDTH="25%" COLOR="#6699FF" SIZE="6">
rule
Explorer) Contents of your web page

hypertext <HTML><HEAD><META><TITLE>Title of your web


<HTML> markup page</TITLE></HEAD><BODY>HTML web page Contents of your web page
language contents</BODY></HTML>

<I> italic <I>Example</I> Example

<IMG SRC="Earth.gif" WIDTH="41" HEIGHT="41"


<IMG> image
BORDER="0" ALT="a sentence about your web site"> (Tip)

Example 1:
Example 1: (Tip)
<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<INPUT> input field
<INPUT type="text" size="10" maxlength="30">
Submit
<INPUT type="Submit" VALUE="Submit">
</FORM>

<INPUT> input field Example 2: Example 2: (Tip)


(Internet
<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<INPUT type="text" STYLE="color: #FFFFFF; font-family:
Verdana; font-weight: bold; font-size: 12px; background-color:
Explorer) Submit
#72A4D2;" size="10" maxlength="30">
<INPUT type="Submit" VALUE="Submit">
</FORM>

Example 3:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">


<TABLE BORDER="0" CELLSPACING="0"
CELLPADDING="2"><TR><TD Example 3: (Tip)
<INPUT> input field
BGCOLOR="#8463FF"><INPUT type="text" size="10"
MAXLENGTH="30"></TD><TD BGCOLOR="#8463FF"
VALIGN="Middle"> <INPUT type="image" name="submit"
src="yourimage.gif"></TD></TR> </TABLE>
</FORM>

Example 4: Example 4: (Tip)

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">


Enter Your Comments:<BR>
<INPUT> input field <TEXTAREA wrap="virtual" name="Comments" rows=3
cols=20 MAXLENGTH=100></TEXTAREA><BR>
<INPUT type="Submit" VALUE="Submit">
<INPUT type="Reset" VALUE="Clear">
Submit Clear
</FORM>

Example 5:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">


<CENTER>
Select an option:
<SELECT> Example 5: (Tip)
<OPTION >option 1
<INPUT> input field <OPTION SELECTED>option 2
Select an option:
<OPTION>option 3
<OPTION>option 4 Submit
<OPTION>option 5
<OPTION>option 6
</SELECT><BR>
<INPUT type="Submit" VALUE="Submit"></CENTER>
</FORM>

Example 6: (Tip)
Example 6:
Select an option:
<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
Select an option:<BR> Option 1
<INPUT type="radio" name="option"> Option 1
<INPUT type="radio" name="option" CHECKED> Option 2 Option 2
<INPUT type="radio" name="option"> Option 3
<BR> Option 3
<INPUT> input field
<BR>
Select an option:<BR> Select an option:
<INPUT type="checkbox" name="selection"> Selection 1 Selection 1
<INPUT type="checkbox" name="selection" CHECKED>
Selection 2 Selection 2
<INPUT type="checkbox" name="selection"> Selection 3
<INPUT type="Submit" VALUE="Submit"> Selection 3
</FORM> Submit

<LI> list item Example 1: Example 1: (Tip)


 List item 1
<MENU>
<LI type="disc">List item 1
<LI type="circle">List item 2 o List item 2
<LI type="square">List item 3  List item 3
</MENU>

Example 2: Example 2:
i. List item 1
<OL type="i"> ii. List item 2
<LI>List item 1
<LI>List item 2 iii. List item 3
<LI>List item 3 iv. List item 4
<LI>List item 4
</OL>

Visit our <A


<LINK> link Visit our site
HREF="http://www.yourdomain.com/">site</A>

<MARQUEE>
scrolling <MARQUEE bgcolor="#CCCCCC" loop="-1" scrollamount="2"
(Internet (Tip)
text width="100%">Example Marquee</MARQUEE>
Explorer)

<MENU>
<LI type="disc">List item 1  List item 1
<MENU> menu <LI type="circle">List item 2 o List item 2
<LI type="square">List item 3
 List item 3
</MENU>

<META name="Description" content="Description of your


site">
<META> meta Nothing will show (Tip)
<META name="keywords" content="keywords describing your
site">

<META HTTP-EQUIV="Refresh"
<META> meta Nothing will show (Tip)
CONTENT="4;URL=http://www.yourdomain.com/">

<META> meta <META http-equiv="Pragma" content="no-cache"> Nothing will show (Tip)

<META> meta <META name="rating" content="General"> Nothing will show (Tip)

<META> meta <META name="ROBOTS" content="ALL"> Nothing will show (Tip)

<META> meta <META NAME="ROBOTS" content="NOINDEX,FOLLOW"> Nothing will show (Tip)

<OL> ordered list Numbered Numbered


1. List item 1
<OL>
<LI>List item 1 2. List item 2
<LI>List item 2 3. List item 3
<LI>List item 3
4. List item 4
<LI>List item 4
</OL> Numbered Special Start
5. List item 1
Numbered Special Start
6. List item 2
<OL start="5"> 7. List item 3
<LI>List item 1 8. List item 4
<LI>List item 2
<LI>List item 3 Lowercase Letters
<LI>List item 4 a. List item 1
</OL>
b. List item 2
Lowercase Letters c. List item 3
<OL type="a"> d. List item 4
<LI>List item 1
<LI>List item 2 Capital Letters
<LI>List item 3 A. List item 1
<LI>List item 4
</OL> B. List item 2
C. List item 3
Capital Letters
D. List item 4
<OL type="A">
<LI>List item 1 Capital Letters Special Start
<LI>List item 2 C. List item 1
<LI>List item 3 D. List item 2
<LI>List item 4
</OL> E. List item 3
F. List item 4
Capital Letters Special Start
Lowercase Roman Numerals
<OL type="A" start="3">
<LI>List item 1 i. List item 1
<LI>List item 2 ii. List item 2
<LI>List item 3
iii. List item 3
<LI>List item 4
</OL> iv. List item 4
Capital Roman Numerals
Lowercase Roman Numerals
I. List item 1
<OL type="i">
<LI>List item 1 II. List item 2
<LI>List item 2 III. List item 3
<LI>List item 3
IV. List item 4
<LI>List item 4
</OL> Capital Roman Numerals Special
Start
Capital Roman Numerals VII. List item 1
<OL type="I"> VIII. List item 2
<LI>List item 1
<LI>List item 2 IX. List item 3
<LI>List item 3 X. List item 4
<LI>List item 4
</OL>

Capital Roman Numerals Special Start


<OL type="I" start="7">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">


<CENTER>
Select an option:
<SELECT>
<OPTION>option 1
<OPTION SELECTED>option 2 Select an option: (Tip)
listbox
<OPTION> <OPTION>option 3
option
<OPTION>option 4
<OPTION>option 5
<OPTION>option 6
</SELECT><BR>
</CENTER>
</FORM>

<P> paragraph This is an example displaying the use of the paragraph tag. This is an example displaying the
<P> This will create a line break and a space between lines. use of the paragraph tag.
This will create a line break and a
Attributes:
Example 1:<BR> space between lines.
<BR>
<P align="left"> Attributes:
This is an example<BR>
displaying the use<BR> Example 1:
of the paragraph tag.<BR>
<BR> This is an example
Example 2:<BR> displaying the use
<BR> of the paragraph tag.
<P align="right"> Example 2:
This is an example<BR>
displaying the use<BR> This is an example
of the paragraph tag.<BR> displaying the use
<BR> of the paragraph tag.
Example 3:<BR> Example 3:
<BR>
<P align="center"> This is an example
This is an example<BR> displaying the use
displaying the use<BR> of the paragraph tag.
of the paragraph tag.

<SMALL> small (text) <SMALL>Example</SMALL> Example (Tip)

strong
<STRONG> <STRONG>Example</STRONG> Example
emphasis

Example 1:

<TABLE BORDER="4" CELLPADDING="2"


CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>

Example 2: (Internet Explorer) Example 1: (Tip)


Column 1 Column 2
<TABLE BORDER="2" BORDERCOLOR="#336699"
CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR> Example 2: (Tip)
<TD>Column 1</TD> Column 1 Column 2
<TABLE> table <TD>Column 2</TD>
</TR>
</TABLE> Example 3: (Tip)
Column 1 Column 2
Example 3: Row 2 Row 2
<TABLE CELLPADDING="2" CELLSPACING="2"
WIDTH="100%">
<TR>
<TD BGCOLOR="#CCCCCC">Column 1</TD>
<TD BGCOLOR="#CCCCCC">Column 2</TD>
</TR>
<TR>
<TD>Row 2</TD>
<TD>Row 2</TD>
</TR>
</TABLE>

<TD> table data <TABLE BORDER="2" CELLPADDING="2"


CELLSPACING="2" WIDTH="100%"> Column 1 Column 2
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>

<DIV align="center"><TABLE>
<TR>
<TH>Column 1</TH>
<TH>Column 2</TH>
<TH>Column 3</TH>
</TR>
<TR>
<TD>Row 2</TD>
<TD>Row 2</TD> Column 1 Column 2 Column 3
<TD>Row 2</TD>
</TR> Row 2 Row 2 Row 2
table
<TH> <TR> Row 3 Row 3 Row 3
header
<TD>Row 3</TD> Row 4 Row 4 Row 4
<TD>Row 3</TD>
<TD>Row 3</TD>
</TR>
<TR>
<TD>Row 4</TD>
<TD>Row 4</TD>
<TD>Row 4</TD>
</TR>
</TABLE>
</DIV>

document Title of your web page will be


<TITLE> <TITLE>Title of your HTML page</TITLE>
title viewable in the title bar. (Tip)

<TABLE BORDER="2" CELLPADDING="2"


CELLSPACING="2" WIDTH="100%">
<TR> Column 1 Column 2
<TR> table row <TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>

<TT> teletype <TT>Example</TT> Example

<U> underline <U>Example</U> Example

Example 1:<BR>
<BR>
<UL> Example 1:
<LI>List item 1  List item 1
<LI>List item 2
</UL>  List item 2
<BR>
unordered Example 2:<BR> Example 2:
<UL>
list <UL type="disc">
<LI>List item 1  List item 1
<LI>List item 2  List item 2
<UL type="circle"> o List item 3
<LI>List item 3
<LI>List item 4 o List item 4
</UL>
</UL>

Das könnte Ihnen auch gefallen