HTML List (Easy)
Just copy & paste the entire page onto your note pad :)
HTML (EASY) <HTML> <HEAD> <TITLE> </TITLE> <META NAME="description" content="."> <META NAME="keywords" content="."> </HEAD> BODY TAGS: Without picture background: <BODY BGCOLOR="#000000" text="#000000" link="#000000" vlink="#000000" alink="#000000"> with picture background: <BODY BGCOLOR="#000000" text="#000000" link="#000000" vlink="#000000" alink="#000000" background="skyhole.gif"> with picture background fixed: <BODY BGCOLOR="#000000" text="#000000" link="#000000" vlink="#000000" alink="#000000" background="skyhole.gif" bgproperties="fixed"> A BASIC TITLE: <P> <CENTER><h1><B><I> Largest</I></B></h1></CENTER> <P> <CENTER><h2><B><I> 2ond Largest</I></B></h2></CENTER> <P> TEXT: <h1>Largest</h1> to <h6>smallest</6> <b>bold</b> <i> italic</i> <blink>Netscape only</blink> <PRE>as typed</PRE> <U>underline</U> <BR>break <BR><BR><BR><BR> <P>space <P>;</P> space
words LISTS: Number lists <OL> <LI> <LI> <LI> </OL> Roman Numeral list <OL TYPE="I"> <LI> <LI> <LI> </OL> Square Bullet list <UL TYPE="square"> <LI> <LI> <LI> </UL> Round Bullets <UL> <LI> <LI> <LI> </UL> LINES: <hr> <hr size=10 align=left noshade width=100%> Can change the size. align=left, right or center. You can take out noshade. You can change the Width. GRAPHICS: <img src="http://address.gif" align="right,left, or center" alt="description of picture" border=0> <img src="" align="" alt="" border=0> Or <center><img src="http://address.gif"></center> LINKS: (using text as hyperlink) <a href="http://address">name of place</a> or <a href="index.html">name of index</a> (using picture as link) <a href="index.html"><img src="picture.gif" height=250 width=450 align=right(left, center) alt="Name of picture etc." border=0></a> (using picture with text as link) <img src="picture.jpg" height=250 width=450 align=right(left, center) alt="Name of picture etc." border=0><a href="index.html>HOME</a> (link within your page) <a href="#index">INDEX</a> (where you want link to start) <a name="index"> (where you want the link to go to) A simple Table: <TABLE> <CAPTION>TITLE HERE</CAPTION> <TR> <TD>TYPE HERE</TD> <TD></TD> <TD></TD> <TD></TD> </TR> <TR> <TD></TD> <TD></TD> <TD></TD> <TD></TD> </TR> <TR> <TD></TD> <TD></TD> <TD></TD> <TD></TD> </TR> </TABLE> E-mail: TO E-MAIL RIGHT FROM PAGE E-Mail <A HREF="mailto:YOURMAIL@HERE">YOURMAIL@HERE</A> TO E-MAIL USING PICTURE <A HREF="mailto:YOURMAIL@HERE"><img src="picture.gif" alt="YOURMAIL@HERE" border=0></A> SOUND: <EMBED SRC="" AUTOSTART=TRUE LOOP=TRUE WIDTH=145 HEIGHT=55 ALIGN="CENTER"><BGSOUND=""> If you do not want it to show up, add the command HIDDEN="yes" or set the height and width to zero. AUTOSTART "True" starts the file straight away, "false" prompts the viewer. LOOP "True" loops the sound so it plays forever. Make the loop "false" if you only want it played once. </BODY> </HTML>
|
|
|
|
|
|
|
|