home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / page11e.zip / tags.hlp (.txt) < prev    next >
OS/2 Help File  |  1996-10-14  |  44KB  |  1,489 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. <ANIMATE> - Defines an animation for the Web Explorer. ΓòÉΓòÉΓòÉ
  3.  
  4.  
  5. <ANIMATE> defines the start of a definition of ann animation that will be used 
  6. by the Web Explorer to signify activity. I.e. it is the animation displayed in 
  7. the box at the top right of the window. 
  8.  
  9. Animations are basically composed of a series of images stored in individual 
  10. files. These can be GIF, JPG or BMP files. BMP are the most popular and easiest 
  11. to work with. The images must be 40 x 40 pixels in size and can be of anything 
  12. you like. Many people use popular animation and rendering packages to put them 
  13. together. 
  14.  
  15. The individual frames are defined using the <FRAME> tag. 
  16.  
  17. There can be no text within the <ANIMATE> ... </ANIMATE> tags. 
  18.  
  19.  
  20. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  21.  
  22.  
  23. This tag has no parameters. 
  24.  
  25.  
  26. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  27.  
  28.  
  29. <ANIMATE> 
  30. <FRAME SRC="./anims/bitmap1"> 
  31. <FRAME SRC="./anims/bitmap2"> 
  32.  .... 
  33. </ANIMATE> 
  34.  
  35.  
  36. ΓòÉΓòÉΓòÉ 2. <FRAME> - Defines an animation frame. ΓòÉΓòÉΓòÉ
  37.  
  38.  
  39. <FRAME> defines an individual frame in a Web explorer animation. This tag can 
  40. only exist within the <ANIMATE> tag. 
  41.  
  42. Each frame must be 40 x40 pixels in size and can be a GIF, JPG or BMP file. You 
  43. must put in one <FRAME> tag for each frame in the animation. 
  44.  
  45.  
  46. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  47.  
  48.  SRC="GraphicFile" 
  49.            GraphicFile is the GIF, JPG or BMP file for the frame being 
  50.            specified. 
  51.  
  52.  
  53. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  54.  
  55.  
  56. <ANIMATE> 
  57. <FRAME SRC="./anims/bitmap1"> 
  58. <FRAME SRC="./anims/bitmap2"> 
  59.  .... 
  60. </ANIMATE> 
  61.  
  62.  
  63. ΓòÉΓòÉΓòÉ 3. <TABLE> - Table Definition. ΓòÉΓòÉΓòÉ
  64.  
  65.  
  66. The <TABLE> Tag defines the beginning of a table definition. Basically, this 
  67. consists of a number of <TR> tags which define the start of each new row in the 
  68. table, with <TD> tags defining each piece of data with the row. 
  69.  
  70. The total number of rows and columes is controlled by how many of these tags 
  71. you put in. For example, if you put 3 table row tags, with 4 table data tags 
  72. following each one, then the table displayed by the browser will be 3 rows by 4 
  73. columes. 
  74.  
  75. You can also tell specific cells to extend themselves over their neighbours. 
  76. This allows you to do such thing as have one colume heading with two columes of 
  77. data underneath it. 
  78.  
  79. You can also setup the appearance of the table such as how thickt he borders 
  80. are and how close the cells are to the borders. A trick I find quite useful is 
  81. to setup a table with 0 sized borders. This allows me to format data into 
  82. columes. Something the WWW browsers do not do at the present time. 
  83.  
  84.  
  85. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  86.  
  87.  
  88.  ALIGN="LEFT | RIGHT | CENTER" 
  89.            This parameter defines the alignment of the table to the page it is 
  90.            one. I.e. to the left or right margins, or centered. 
  91.  
  92.  BORDER="n" 
  93.            n defines the thickness of the border in pixels. 0 turns the border 
  94.            off, enabling you to use tables as a convieniant way to format the 
  95.            data. 
  96.  
  97.  CELLSPACING="n" 
  98.            n is the distance between cells in pixels. 
  99.  
  100.  CELLPADDING="n" 
  101.            n is the distance between the cell edge and the text within that 
  102.            cell in pixels. 
  103.  
  104.  VSPACE=n 
  105.            For images whose alignment will wrap text around them, n is the 
  106.            number of pixels of blank space to be kept above and below the 
  107.            image. 
  108.  
  109.  HSPACE=n 
  110.            For images whose alignment will wrap text around them, n is the 
  111.            number of pixels of blank space to be kept to either side of the 
  112.            image. 
  113.  
  114.  
  115. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  116.  
  117.  
  118. <TABLE ALIGN="LEFT | RIGHT | CENTER" BORDER=n CELLSPACING=n CELLPADDING=n> 
  119. HSPACE=n> VSPACE=n> 
  120. <TR> 
  121. <TD> ... cell data ... </TD> 
  122. </TABLE> 
  123.  
  124.  
  125. ΓòÉΓòÉΓòÉ 4. <TD> - Table Data. ΓòÉΓòÉΓòÉ
  126.  
  127.  
  128. The <TD> Tag defines the start and end of a block of text which makes up a cell 
  129. in a table. This can include graphics, URL references and even other tables. 
  130.  
  131. You can also instruct the browse to make this cell cover one or more other 
  132. cells to the right and down. For example, this lets you create multi colume 
  133. headings, summary lines, etc. You can do it on any cell in the table. 
  134.  
  135.  
  136. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  137.  
  138.  
  139.  ALIGN="LEFT | RIGHT | CENTER" 
  140.            This parameters tells the browser how to align the data within the 
  141.            cell. 
  142.  
  143.  ROWSPAN=n 
  144.            n is the number of rows that this cell is to cover. Thus allowing 
  145.            you to create cells that extend over more than one row. 
  146.  
  147.  COLSPAN=n 
  148.            n is the number of columes that this cell is to cover. Thus allowing 
  149.            you to create cells that extend over more than one colume. You can 
  150.            use this to create multi-olume titles and summary lines. 
  151.  
  152.  NOWRAP 
  153.            This tells the browser not to automatically wrap the text within the 
  154.            cell. To control wrapping you can use <BR> tags. 
  155.  
  156.  
  157. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  158.  
  159.  
  160. <TABLE> 
  161. <TR> 
  162. <TD ALIGN="LEFT | RIGHT | CENTER" ROWSPAN=n COLSPAN=n NOWRAP> ... cell data ... 
  163. </TD> 
  164. </TABLE> 
  165.  
  166.  
  167. ΓòÉΓòÉΓòÉ 5. <TH> - Table Heading. ΓòÉΓòÉΓòÉ
  168.  
  169.  
  170. The <TH> Tag is used when you want the first row of a table to be a row of 
  171. headings for the rest of the table. You simply replace the <TD> tags for the 
  172. first row with <TH> tags. 
  173.  
  174. The actual result of doing this is not that much different. All it effectively 
  175. does is to Bold the text usd in the first row. However it is good for making it 
  176. clear that the row is a row of headings. 
  177.  
  178.  
  179. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  180.  
  181.  
  182.  ALIGN="LEFT | RIGHT | CENTER" 
  183.            This parameters tells the browser how to align the data within the 
  184.            cell. 
  185.  
  186.  ROWSPAN=n 
  187.            n is the number of rows that this cell is to cover. Thus allowing 
  188.            you to create cells that extend over more than one row. 
  189.  
  190.  COLSPAN=n 
  191.            n is the number of columes that this cell is to cover. Thus allowing 
  192.            you to create cells that extend over more than one colume. You can 
  193.            use this to create multi-olume titles and summary lines. 
  194.  
  195.  NOWRAP 
  196.            This tells the browser not to automatically wrap the text within the 
  197.            cell. To control wrapping you can use <BR> tags. 
  198.  
  199.  
  200. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  201.  
  202.  
  203. <TABLE> 
  204. <TR> 
  205. <TH ALIGN="LEFT | RIGHT | CENTER" ROWSPAN=n COLSPAN=n NOWRAP> ... Colume 
  206. Heading ... </TH> 
  207. <TR> 
  208. <TD> 
  209. </TABLE> 
  210.  
  211.  
  212. ΓòÉΓòÉΓòÉ 6. <TR> - Table Row. ΓòÉΓòÉΓòÉ
  213.  
  214.  
  215. This tag does not have a corresponding end tag. 
  216.  
  217. The <TR> Tag defines the start of a new row in a table. The browser will just 
  218. keep adding any cells to the end of the table until this tag is found. Then it 
  219. starts a new row. 
  220.  
  221.  
  222. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  223.  
  224.  
  225. This tag has no parameters. 
  226.  
  227.  
  228. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  229.  
  230.  
  231. <TABLE> 
  232. <TR> 
  233. <TD> ... cell data ... </TD> 
  234. </TABLE> 
  235.  
  236.  
  237. ΓòÉΓòÉΓòÉ 7. <BASE> - Base Directory. ΓòÉΓòÉΓòÉ
  238.  
  239.  
  240. <BASE> is only valid within <HEAD> ... </HEAD> tags. 
  241.  
  242. The <BASE> Tag is used to define a base directory from which all subsequent 
  243. file references are made. 
  244.  
  245. This only works for relative file references such as './bitmap.gif'. Absolute 
  246. references are not effected. Using this tags gives you the ability to change 
  247. the base directory as setup in your HTML servers configuration. However I do 
  248. recommend that you only do this after carefully considering other options 
  249. because it can cause probelsm when you need to reference files outside of the 
  250. directory structure. 
  251.  
  252.  
  253. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  254.  
  255.  
  256.  HREF="URL" 
  257.            This parameter is Required. 
  258.            URL is any valid directory on your server which is to be the new 
  259.            base directory for all subsequent calls for documents and references 
  260.            within them. 
  261.  
  262.  
  263. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  264.  
  265.  
  266. <HEAD> 
  267. <BASE HREF="URL"> 
  268. </HEAD> 
  269.  
  270.  
  271. ΓòÉΓòÉΓòÉ 8. <BODY> - Body of Document. ΓòÉΓòÉΓòÉ
  272.  
  273.  
  274. <BODY> defines the start and the end of the textural content of the document. 
  275. I.e. only text and graphics within the <BODY> </BODY> will be displayed by the 
  276. browser. 
  277.  
  278. This tag can also be used to define the colour of text, links, visited links 
  279. and the background for the page to be displayed. Further you can also specify a 
  280. bitmap that will be used as a background. This can be very effective as it 
  281. greatly enhances the look of a page, however it can also result in eye searing 
  282. pages, so careful selection of colours and graphics is recommended. 
  283.  
  284.  
  285. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  286.  
  287.  
  288.  BACKGROUND="GraphicFile" 
  289.            GraphicFile can be any GIF or JPG format graphic file. It should 
  290.            have the GIF or JPG extension to ensure that the browser has no 
  291.            problem with it. 
  292.  
  293.  BGCOLOR="Color" 
  294.            Color is a hexidecimal number which tells the browser what colour to 
  295.            use for the background. 
  296.  
  297.            The format for it is "#rrggbb" where rr is the red component, gg is 
  298.            the green and bb is the blue component. For example, "#000000" is 
  299.            equal to black, "#FFFFFF" is equal to white, "#800080" is equal to 
  300.            dark purple, and "#CCCCCC" is equal to light grey. 
  301.  
  302.  TEXT="Color" 
  303.            Color is a hexidecimal number which tells the browser what colour to 
  304.            use for the text of the document. 
  305.  
  306.  LINK="Color" 
  307.            Color is a hexidecimal number which tells the browser what colour to 
  308.            use for links to other documents. 
  309.  
  310.  VLINK="Color" 
  311.            Color is a hexidecimal number which tells the browser what colour to 
  312.            use for links to other documents which you have already visited. 
  313.  
  314.  
  315. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  316.  
  317.  
  318. <HTML> 
  319. <BODY BACKGROUND="GraphicFile" BGCOLOR="Color" TEXT="Color" LINK="Color" 
  320. VLINK="Color" > 
  321. </HTML> 
  322.  
  323.  
  324. ΓòÉΓòÉΓòÉ 9. <FORM> - Form Definition. ΓòÉΓòÉΓòÉ
  325.  
  326.  
  327. <FORM> can be used as a replacement for the <BODY> tag or within it to create a 
  328. form within the body of a document. 
  329.  
  330. It is used to define the start and end of a data entry form. I.e. you can enter 
  331. data into fields which are then transmitted to the web site for processing. The 
  332. most common example of this that you will probably have used is the data entry 
  333. screen for search programs such as Yahoo. 
  334.  
  335.  
  336. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  337.  
  338.  
  339.  METHOD="POST | GET" 
  340.            This parameter is Required. 
  341.  
  342.            This parameter defines how a form sends data to the server. 
  343.  
  344.            POST is the preferred option (although it's not the default) as it 
  345.            sends the data to the server through it's normal I/O routines and 
  346.            therefore is easier to handle by the CGI scripts that do the work. 
  347.  
  348.            GET is the default and sends the data to the server as a URL request 
  349.            with the data added to the end of the URL. This has a maximum limit 
  350.            of 1024 characters. 
  351.  
  352.  ACTION="URL" 
  353.            This parameter is Required. 
  354.  
  355.            This parameter defines the script or program that the form will send 
  356.            the data to. Typically this will be a Perl script with a .CGI 
  357.            extension, however yif you are using OS/2 servers, REXX scripting 
  358.            can also be used. 
  359.  
  360.  ENCTYPE="MimeType" 
  361.            This parameter defines the the mime encoding to use for the data. 
  362.            Usually this is not required. 
  363.  
  364.  
  365. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  366.  
  367.  
  368. <FORM METHOD="POST | GET" ACTION="URL" ENCTYPE="MimeType"> 
  369.  
  370.  
  371. ΓòÉΓòÉΓòÉ 10. <HEAD> - Document Heading. ΓòÉΓòÉΓòÉ
  372.  
  373.  
  374. <HEAD> defines the documents heading section. It appears within the <HTML> 
  375. </HTML> tags and usually before the <BODY> tag. 
  376.  
  377. It is used to define heading related information which at this stage consists 
  378. of the documents title and <BASE> tags. 
  379.  
  380. <HEAD> is an important part of good HTML and should always be in every page 
  381. along with the <TITLE> which define the documents title. 
  382.  
  383.  
  384. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  385.  
  386.  
  387. The <HEAD> tag has no parameters. 
  388.  
  389.  
  390. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  391.  
  392.  
  393. <HTML> 
  394. <HEAD> 
  395. <BASE ...> 
  396. <TITLE> document Title </TITLE> 
  397. </HEAD> 
  398. <BODY> 
  399.  
  400.  
  401. ΓòÉΓòÉΓòÉ 11. <HTML> - HTML Document. ΓòÉΓòÉΓòÉ
  402.  
  403.  
  404. <HTML> defines the start and end of a HTML document. Whilst not strictly 
  405. required, it is considered good HTML to have this tag in place. 
  406.  
  407. It can also be used to define the HTML level that is used throughout this 
  408. document. Although only the most energetic authors put this in place. Some HTML 
  409. editors will create this information for you. 
  410.  
  411.  
  412. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  413.  
  414.  
  415.  VERSION="HTMLVersion" 
  416.            This parameter defines the HTML version used throughout the document 
  417.            and will look something like this: 
  418.  
  419.               VERSION="-//IETF//DTD HTML//EN//2.0" 
  420.  
  421.            Don't ask me to explain it ! 
  422.  
  423.  
  424. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  425.  
  426.  
  427. <HTML VERSION="HTMLVersion"> 
  428. <HEAD> 
  429. </HEAD> 
  430. <BODY> 
  431. </BODY> 
  432. <HTML> 
  433.  
  434.  
  435. ΓòÉΓòÉΓòÉ 12. <ISINDEX> - Indicates Searchable Index. ΓòÉΓòÉΓòÉ
  436.  
  437.  
  438. There is no corresponding end tag for <INPUT>. 
  439.  
  440. For long textural documents, a search engine can be made available by including 
  441. this tag. To access it you add a query to the end of the URL you use to request 
  442. the HTML page like this: 
  443.  
  444.     http://www.os2zone.aus.net/subs/zone.html?Derek+Clarkson 
  445.  
  446.  Providing that zone.html has the tag <ISINDEX> on it somewhere, the browser 
  447.  will then search the page it receives for the two words 'Derek' and 
  448.  'Clarkson'. 
  449.  
  450.  Documents that are searchable also have a data entry added to the window from 
  451.  which you can execute queries on the document. By default the text string 
  452.  "This is a searchable index. Enter search keybwords:" is used with it, but you 
  453.  can override this with your own message as per below. 
  454.  
  455.  
  456. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  457.  
  458.  
  459.  PROMPT="PromptText" 
  460.            PromptText is a message which will be displayed at the top of the 
  461.            document to indicate that it is searchable. 
  462.  
  463.  
  464. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  465.  
  466.  
  467. <HEAD> 
  468. <ISINDEX PROMPT="PromptText"> 
  469. </HEAD> 
  470.  
  471.  
  472. ΓòÉΓòÉΓòÉ 13. <TITLE> - Document Title. ΓòÉΓòÉΓòÉ
  473.  
  474.  
  475. <TITLE> is only valid within <HEAD> ... </HEAD> tags. 
  476.  
  477. The <TITLE> Tag defines the documents title which will generally appear in the 
  478. title bar of the browser you are using. It can also be used for creating a 
  479. table of contents automatically. 
  480.  
  481.  
  482. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  483.  
  484.  
  485. The <TITLE> tag has no parameters. 
  486.  
  487.  
  488. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  489.  
  490.  
  491. <HEAD> 
  492. <TITLE>Document Title</TITLE> 
  493. </HEAD> 
  494.  
  495.  
  496. ΓòÉΓòÉΓòÉ 14. <ADDRESS> - Addresses. ΓòÉΓòÉΓòÉ
  497.  
  498.  
  499. The <ADDRESS> Tag is used to highlight some text that is an address of some 
  500. sort. 
  501.  
  502.  
  503. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  504.  
  505.  
  506. The <ADDRESS> tag has no parameters. 
  507.  
  508.  
  509. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  510.  
  511.  
  512. <ADDRESS> Address text </ADDRESS> 
  513.  
  514.  
  515. ΓòÉΓòÉΓòÉ 15. <B> - Bold Text. ΓòÉΓòÉΓòÉ
  516.  
  517.  
  518. The <B> Tag bolds all text within it's boundaries. 
  519.  
  520.  
  521. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  522.  
  523.  
  524. The <B> tag has no parameters. 
  525.  
  526.  
  527. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  528.  
  529.  
  530. <B> ... document text ... </B> 
  531.  
  532.  
  533. ΓòÉΓòÉΓòÉ 16. <BLOCKQUOTE> - BlockQuotes. ΓòÉΓòÉΓòÉ
  534.  
  535.  
  536. The <BLOCKQUOTE> Tag is most often used to highlight material which has been 
  537. sourced from othr documents, whether paper or electronic. 
  538.  
  539. It has the effect of indenting the text which makes it useful for formatting. 
  540.  
  541.  
  542. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  543.  
  544.  
  545. The <BLOCKQUOTE> tag has no parameters. 
  546.  
  547.  
  548. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  549.  
  550.  
  551. <BLOCKQUOTE> Reference text </BLOCKQUOTE> 
  552.  
  553.  
  554. ΓòÉΓòÉΓòÉ 17. <BR> - Line Break. ΓòÉΓòÉΓòÉ
  555.  
  556.  
  557. The <BR> Tag is used to create a line break between two lines. If you want to 
  558. separate paragraphs, then use the <P> Tag. <BR> does the same job but does not 
  559. leave any space between the lines. 
  560.  
  561.  
  562. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  563.  
  564.  
  565. The <BR> tag has no parameters. 
  566.  
  567.  
  568. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  569.  
  570.  
  571. ... text 
  572. <BR> ... text 
  573.  
  574.  
  575. ΓòÉΓòÉΓòÉ 18. <CENTER> - Center text. ΓòÉΓòÉΓòÉ
  576.  
  577.  
  578. The <CENTER> Tag Centers all text within it's boundaries. 
  579.  
  580.  
  581. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  582.  
  583.  
  584. The <CENTER> tag has no parameters. 
  585.  
  586.  
  587. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  588.  
  589.  
  590. <CENTER> ... document text ... </CENTER> 
  591.  
  592.  
  593. ΓòÉΓòÉΓòÉ 19. <CITE> - Citation. ΓòÉΓòÉΓòÉ
  594.  
  595.  
  596. The <CITE> Tag is most often used to highlight citations from other documents. 
  597.  
  598.  
  599. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  600.  
  601.  
  602. The <CITE> tag has no parameters. 
  603.  
  604.  
  605. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  606.  
  607.  
  608. <CITE> Reference text </CITE> 
  609.  
  610.  
  611. ΓòÉΓòÉΓòÉ 20. <CODE> - Program Code. ΓòÉΓòÉΓòÉ
  612.  
  613.  
  614. The <CODE> Tag is most often used to highlight program code written in a 
  615. document as an example. 
  616.  
  617.  
  618. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  619.  
  620.  
  621. The <CODE> tag has no parameters. 
  622.  
  623.  
  624. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  625.  
  626.  
  627. <CODE> Program code </CODE> 
  628.  
  629.  
  630. ΓòÉΓòÉΓòÉ 21. <EM> - Emphasis. ΓòÉΓòÉΓòÉ
  631.  
  632.  
  633. The <EM> Tag is most often used to provide Emphasis on the enclosed text. This 
  634. is most often done as Italics, but is up to the way your browser interprets the 
  635. tag. 
  636.  
  637.  
  638. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  639.  
  640.  
  641. The <EM> tag has no parameters. 
  642.  
  643.  
  644. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  645.  
  646.  
  647. <EM> text </EM> 
  648.  
  649.  
  650. ΓòÉΓòÉΓòÉ 22. <FONT> - Font Size. ΓòÉΓòÉΓòÉ
  651.  
  652.  
  653. The <FONT> Tag sets the size of all text within it's boundaries bigger or 
  654. smaller than the base font size in your browser. 
  655.  
  656. This can be very handy for creating highlighted text by changing it's size or 
  657. creating false headings which look like Heading Tags but don't use them. 
  658.  
  659. Note: To create a false heading, use both <FONT> and <B>. 
  660.  
  661.  
  662. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  663.  
  664.  
  665.  SIZE=n 
  666.            This parameter is Required. 
  667.            n can range from -3 to 5 and indicates the size bigger or smaller 
  668.            than the default size to make the text. 
  669.  
  670.  
  671. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  672.  
  673.  
  674. <FONT SIZE=n> ... document text ... </FONT> 
  675.  
  676.  
  677. ΓòÉΓòÉΓòÉ 23. <Hn> - Headings. ΓòÉΓòÉΓòÉ
  678.  
  679.  
  680. The <Hn> Tag sets the enclosed text up as a heading. This means that it is set 
  681. on it's own Line as though a <P> tags had been added before and after it. 
  682.  
  683. There are currently 6 levels of headings from H1 to H6. The only thing that 
  684. they change is the size of the font. Heading 1 is quite big and heading 6 is 
  685. normal text size. 
  686.  
  687.  
  688. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  689.  
  690.  
  691. The <Hn> tag has no parameters. 
  692.  
  693.  
  694. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  695.  
  696.  
  697. <Hn> Heading text </Hn> 
  698.  
  699.  
  700. ΓòÉΓòÉΓòÉ 24. <I> - Italic text. ΓòÉΓòÉΓòÉ
  701.  
  702.  
  703. The <I> Tag Sets all text to Italics within it's boundaries. 
  704.  
  705.  
  706. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  707.  
  708.  
  709. The <I> tag has no parameters. 
  710.  
  711.  
  712. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  713.  
  714.  
  715. <I> ... document text ... </I> 
  716.  
  717.  
  718. ΓòÉΓòÉΓòÉ 25. <KBD> - Keyboard. ΓòÉΓòÉΓòÉ
  719.  
  720.  
  721. The <KBD> Tag is most often used to indicate text that is to be, or has been 
  722. typed in at the keyboard. This usually results in a Courier font as though you 
  723. had used the <PRE> tag, however formatting of spaces and paragraphs is still 
  724. done. 
  725.  
  726.  
  727. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  728.  
  729.  
  730. The <KBD> tag has no parameters. 
  731.  
  732.  
  733. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  734.  
  735.  
  736. <KBD> Text </KBD> 
  737.  
  738.  
  739. ΓòÉΓòÉΓòÉ 26. <P> - Paragraph. ΓòÉΓòÉΓòÉ
  740.  
  741.  
  742. The <P> Tag creates a new paragraph and also places a few pixels worth of space 
  743. between the two paragraphs. 
  744.  
  745.  
  746. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  747.  
  748.  
  749. The <P> tag has no parameters. 
  750.  
  751.  
  752. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  753.  
  754.  
  755. ... text 
  756. <P> ... text 
  757.  
  758.  
  759. ΓòÉΓòÉΓòÉ 27. <PRE> - Preformatted Text. ΓòÉΓòÉΓòÉ
  760.  
  761.  
  762. The <PRE> Tag cause all text within it's boundaries to remain as it was typed 
  763. in. 
  764.  
  765. If you do not add any tags to your document, a browser will reformat the text, 
  766. removing carriage returns, extra spaces, etc. so that the text is one big 
  767. paragraph, ignoring any formatting you may have done. The <PRE> tag tells the 
  768. browser to leave the enclosed text exactly as it is in the source file, extra 
  769. spaces and carriage returns included. 
  770.  
  771. This is a very handy facility as it gives you a quick way to create tables and 
  772. lists, it can also be useful as the default font is also used for preformatted 
  773. text (usually  Courier) hich can give a good look to some sections of a 
  774. document. 
  775.  
  776.  
  777. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  778.  
  779.  
  780. The <PRE> tag has no parameters. 
  781.  
  782.  
  783. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  784.  
  785.  
  786. <PRE> document text </PRE> 
  787.  
  788.  
  789. ΓòÉΓòÉΓòÉ 28. <SAMP> - Sample text. ΓòÉΓòÉΓòÉ
  790.  
  791.  
  792. The <SAMP> Tag is most often used to highlight sample output from a program. 
  793.  
  794.  
  795. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  796.  
  797.  
  798. The <SAMP> tag has no parameters. 
  799.  
  800.  
  801. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  802.  
  803.  
  804. <SAMP> Sample output </SAMP> 
  805.  
  806.  
  807. ΓòÉΓòÉΓòÉ 29. <STRONG> - Strong Emphasis. ΓòÉΓòÉΓòÉ
  808.  
  809.  
  810. The <STRONG> Tag is most often used to provide a emphasis to the enclosed text. 
  811. This typically results in bolding of the text. 
  812.  
  813.  
  814. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  815.  
  816.  
  817. The <STRONG> tag has no parameters. 
  818.  
  819.  
  820. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  821.  
  822.  
  823. <STRONG> Sample output </STRONG> 
  824.  
  825.  
  826. ΓòÉΓòÉΓòÉ 30. <TT> - Teletype text. ΓòÉΓòÉΓòÉ
  827.  
  828.  
  829. The <TT> Tag is most often used to make the enclosed text look as if it had 
  830. come off a teletype machine. This usually results in the text be set to a font 
  831. of Courier. 
  832.  
  833.  
  834. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  835.  
  836.  
  837. The <TT> tag has no parameters. 
  838.  
  839.  
  840. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  841.  
  842.  
  843. <TT> Output Text </TT> 
  844.  
  845.  
  846. ΓòÉΓòÉΓòÉ 31. <U> - Underline Text. ΓòÉΓòÉΓòÉ
  847.  
  848.  
  849. The <U> Tag Underlines all text within it's boundaries. 
  850.  
  851.  
  852. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  853.  
  854.  
  855. The <U> tag has no parameters. 
  856.  
  857.  
  858. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  859.  
  860.  
  861. <U> ... document text ... </U> 
  862.  
  863.  
  864. ΓòÉΓòÉΓòÉ 32. <VAR> - Variable. ΓòÉΓòÉΓòÉ
  865.  
  866.  
  867. The <VAR> Tag is most often used to highlight variable names in the text. This 
  868. also usually results in Italic being applied. 
  869.  
  870.  
  871. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  872.  
  873.  
  874. The <VAR> tag has no parameters. 
  875.  
  876.  
  877. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  878.  
  879.  
  880. <VAR> Variable </VAR> 
  881.  
  882.  
  883. ΓòÉΓòÉΓòÉ 33. <A> - Link Anchor. ΓòÉΓòÉΓòÉ
  884.  
  885.  
  886. The <A> Tag is used to denote a block of text which is a anchor or clickable 
  887. link to another document, a email form, or a file for automatic downloading. 
  888. You can also use it to assign names to points in your document which can be 
  889. used as targets for links as well. I.e. clicking on the text will goto that 
  890. particular spot on the page. 
  891.  
  892. You can also assign images as anchors by including them within the boundaries 
  893. of the <A> tag. 
  894.  
  895. This tags requires either the HREF tag or the NAME tag, or both. But at least 
  896. one must be present or it does nothing. 
  897.  
  898. To link to another page and also specify where in that page you wish to go, you 
  899. would use a link like HREF="./home.html#BOTTOM". The "#" character tells the 
  900. browser to use the following text as a place name within the target page. To 
  901. simply goto another part of the same page just use the name assigned to that 
  902. particular location. I.e. HREF="#BOTTOM". 
  903.  
  904.  
  905. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  906.  
  907.  
  908.  HREF="Target" 
  909.            Either this parameter or NAME is Required. 
  910.            Target can be any one of a number of things as follows: 
  911.  
  912.                A link to another document. For example, to link to another 
  913.                 site you could use a WWW address such as 
  914.                 "http://www.os2zone.aus.net". Or altenatively you can link to 
  915.                 another page on your own server by using a relative path such 
  916.                 as "../../bitmaps/graph1.html". 
  917.  
  918.                An email target. For example to mail me, you would use 
  919.                 "mailto:derek@os2zone.aus.net". 
  920.  
  921.                One of a range of other link types. Most common amongst these 
  922.                 are "ftp: ...", "telnet: ...", and "gopher: ...". 
  923.  
  924.  NAME="Name" 
  925.            Either this parameter or HREF is Required. 
  926.            Name is a unique name to be assigned to this place in this page. You 
  927.            can use the name in other pages, but only once in the same page. 
  928.  
  929.  REL="NEXT | PREVIOUS | PARENT | MADE" 
  930.            This parameter describes the relationship between this page and the 
  931.            one being used as the target of the link. 
  932.  
  933.  REV="NEXT | PREVIOUS | PARENT | MADE" 
  934.            This parameter is the reverse of the previous one in that it tells 
  935.            use the relationship of the target document to the current one. 
  936.  
  937.  TITLE="Text" 
  938.            Text is some advisary information about the title of the target 
  939.            document. Usually it is the same as the target page's <TITLE> ... 
  940.            </TITLE> text. 
  941.  
  942.  
  943. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  944.  
  945.  
  946. <A HREF="Target" NAME="Name" REL="NEXT | PREVIOUS | PARENT | MADE" REV="NEXT | 
  947. PREVIOUS | PARENT | MADE" TITLE="Text"> ... Clickable Anchor Text, images ... 
  948. </A> 
  949.  
  950.  
  951. ΓòÉΓòÉΓòÉ 34. <HR> - Horizontal Rule. ΓòÉΓòÉΓòÉ
  952.  
  953.  
  954. <HR> has no corresponding end tag. 
  955.  
  956. <HR> draws a straight line across the width of the browsers page. This can be 
  957. very good for providing visiual queues which break the document up into meanful 
  958. sections. 
  959.  
  960. By modifying a couple of parameters you can also control the alignment, width 
  961. and thickness of the line, giving you the ability to get quite decorative 
  962. effects. 
  963.  
  964. The ultimate rules though are created by using bitmaps which are only a few 
  965. pixels high and very wide. You then place then using the <IMG> tag. 
  966.  
  967.  
  968. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  969.  
  970.  
  971.  ALIGN="LEFT | RIGHT | CENTER" 
  972.            Aligns the rule with either the left hand side of the window, right 
  973.            hand side or centers it. 
  974.  
  975.  NOSHADE 
  976.            There is no value for this parameter. 
  977.            This tells the browser not to provide shading on the rule. 
  978.  
  979.  SIZE=n 
  980.            n is the number of pixels high to make the rule. 
  981.  
  982.  WIDTH="Number | Percentage%" 
  983.            Number tells the browser to make the rule a specific number of 
  984.            pixels. Percentage tells it to make the rule a percentage of the 
  985.            current width of the window. 
  986.  
  987.            I prefer using Percenages such as 50% or 75%, as it then does not 
  988.            matter how wide the surfer has set their window to. 
  989.  
  990.            The default for this is the full width of the window. 
  991.  
  992.  
  993. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  994.  
  995.  
  996. <HR ALIGN="LEFT | RIGHT | CENTER" NOSHADE SIZE=Number | "Percentage%"> 
  997.  
  998.  
  999. ΓòÉΓòÉΓòÉ 35. <IMG> - Graphic Image. ΓòÉΓòÉΓòÉ
  1000.  
  1001.  
  1002. <IMG> has no corresponding end tag. 
  1003.  
  1004. <IMG> reads in a graphic image stored in a GIF or JPG file from the server and 
  1005. draws it's contents at the current spot in the browser. This tag is responsible 
  1006. for almost all the graphics you see on the WWW. 
  1007.  
  1008.  
  1009. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1010.  
  1011.  
  1012.  ALIGN="LEFT | RIGHT | TOP | TEXTTOP | MIDDLE | ABSMIDDLE | BASELINE | BOTTOM | 
  1013.  ABSBOTTOM" 
  1014.            Aligns the graphic according to one of the following rules: 
  1015.  
  1016.            LEFT Aligns the graphic along the left hand margin and wraps text 
  1017.            around the right hand side of it. 
  1018.  
  1019.            RIGHT Aligns the graphic along the right hand margin and wraps text 
  1020.            around the left hand side of it. 
  1021.  
  1022.            TOP Aligns the graphic with the tallest item in the current line. 
  1023.  
  1024.            TEXTTOP Aligns the graphic with the top of the tallest text in the 
  1025.            line. 
  1026.  
  1027.            MIDDLE Aligns the baseline of the current text with the middle of 
  1028.            the image. NOTE: this does not wrap the text. 
  1029.  
  1030.            ABSMIDDLE Aligns the middel of the text with the middle of the 
  1031.            graphic. NOTE: this does not wrap the text. 
  1032.  
  1033.            BASELINE (Default) Aligns the graphic with the baseline of the 
  1034.            current line. 
  1035.  
  1036.            BOTTOM Same as BASELINE. 
  1037.  
  1038.            ABSBOTTOM Aligns the Graphic with the bottom of the current line. 
  1039.  
  1040.  WIDTH=n 
  1041.            This is required if HEIGHT is present. 
  1042.  
  1043.            n is the width of the image in pixels. Using this helps the browser 
  1044.            to display graphics quickly as it can predict the space needed by 
  1045.            the graphic before it receives it. 
  1046.  
  1047.  HEIGHT=n 
  1048.            This is required if WIDTH is present. 
  1049.  
  1050.            n is the height of the image in pixels. Using this helps the browser 
  1051.            to display graphics quickly as it can predict the space needed by 
  1052.            the graphic before it receives it. 
  1053.  
  1054.  BORDER=n 
  1055.            n is the thickness of the border to be added around the graphic. 
  1056.  
  1057.  VSPACE=n 
  1058.            For images whose alignment will wrap text around them, n is the 
  1059.            number of pixels of blank space to be kept above and below the 
  1060.            image. 
  1061.  
  1062.  HSPACE=n 
  1063.            For images whose alignment will wrap text around them, n is the 
  1064.            number of pixels of blank space to be kept to either side of the 
  1065.            image. 
  1066.  
  1067.  
  1068. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1069.  
  1070.  
  1071. <HR ALIGN="LEFT | RIGHT | TOP | TEXTTOP | MIDDLE | ABSMIDDLE | BASELINE | 
  1072. BOTTOM | ABSBOTTOM" WIDTH=n HEIGHT=n BORDER=n VSPACE=n HSPACE=n> 
  1073.  
  1074.  
  1075. ΓòÉΓòÉΓòÉ 36. <DD> - Definition List, Item Description. ΓòÉΓòÉΓòÉ
  1076.  
  1077.  
  1078. This tag does not require a corresponding end tag. 
  1079.  
  1080. It is used to indicate the the next block of text is the description for the 
  1081. item in the description list. The browser will keep formatting data as part of 
  1082. this description until a <DT> or </DL> tag is encountered. 
  1083.  
  1084.  
  1085. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1086.  
  1087.  
  1088. The <DL> tag has no parameters. 
  1089.  
  1090.  
  1091. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1092.  
  1093.  
  1094. <DL> 
  1095. <DT> Title ... 
  1096. <DD> Description text ... 
  1097. </DL> 
  1098.  
  1099.  
  1100. ΓòÉΓòÉΓòÉ 37. <DIR> - Directory List. ΓòÉΓòÉΓòÉ
  1101.  
  1102.  
  1103. This tag defines the the following items will be part of a directory list. This 
  1104. is usually a short list of 20 or so items which have short names. 
  1105.  
  1106.  
  1107. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1108.  
  1109.  
  1110.  COMPACT 
  1111.            This parameter cause the browser to reduce the amount of space 
  1112.            between items in the list. 
  1113.  
  1114.            Note:- This is not supported by all browsers. 
  1115.  
  1116.  
  1117. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1118.  
  1119.  
  1120. <DIR COMPACT> 
  1121. <LI> Item text ... 
  1122. <LI> Item text ... 
  1123. </DIR> 
  1124.  
  1125.  
  1126. ΓòÉΓòÉΓòÉ 38. <DL> - Definition List. ΓòÉΓòÉΓòÉ
  1127.  
  1128.  
  1129. This tag defines that the following items will be part of a definition list. 
  1130. This is a list where each item has a title, followed by a description which is 
  1131. indented from the left margin. 
  1132.  
  1133. The title text of each item is signified by a <DT> tag. The textural 
  1134. description of this item is set with a <DD> 
  1135.  
  1136. Typically this would be used in cases where you are listing some information 
  1137. and then describing it. For example, a list of WWW URLs with an associated 
  1138. description of place. 
  1139.  
  1140.  
  1141. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1142.  
  1143.  
  1144.  COMPACT 
  1145.            This parameter cause the browser to reduce the amount of space 
  1146.            between items in the list. 
  1147.  
  1148.            Note:- This is not supported by all browsers. 
  1149.  
  1150.  
  1151. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1152.  
  1153.  
  1154. <DL COMPACT> 
  1155. <DT> Item title ... 
  1156. <DD> Item description ... 
  1157. </DL> 
  1158.  
  1159.  
  1160. ΓòÉΓòÉΓòÉ 39. <DT> - Definition List, Item Title. ΓòÉΓòÉΓòÉ
  1161.  
  1162.  
  1163. This tag does not required a corresponding end tag. 
  1164.  
  1165. This tag defines the title text for each item in a definition list. 
  1166.  
  1167.  
  1168. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1169.  
  1170.  
  1171. This tag has no parameters. 
  1172.  
  1173.  
  1174. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1175.  
  1176.  
  1177. <DL> 
  1178. <DT> Item title ... 
  1179. <DD> Item description ... 
  1180. </DL> 
  1181.  
  1182.  
  1183. ΓòÉΓòÉΓòÉ 40. <LI> - List Item. ΓòÉΓòÉΓòÉ
  1184.  
  1185.  
  1186. This tag does not required a corresponding end tag. 
  1187.  
  1188. This tag defines the text for each item in a standard list. 
  1189.  
  1190. Note:It is not used in a definition list. 
  1191.  
  1192.  
  1193. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1194.  
  1195.  
  1196.  TYPE="A | a | I | i | 1 | DISC | CIRCLE | SQUARE" 
  1197.            This parameter is used to over ride the settings of the <OL> or <UL> 
  1198.            tags, see them for further details of this parameter. 
  1199.  
  1200.  
  1201. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1202.  
  1203.  
  1204. <OL> 
  1205. <LI> Item text ... 
  1206. </OL> 
  1207.  
  1208.  
  1209. ΓòÉΓòÉΓòÉ 41. <MENU> - Menu List. ΓòÉΓòÉΓòÉ
  1210.  
  1211.  
  1212. This tag defines a menu list which is a list of items where each item would fit 
  1213. on one line. 
  1214.  
  1215.  
  1216. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1217.  
  1218.  
  1219.  COMPACT 
  1220.            This parameter cause the browser to reduce the amount of space 
  1221.            between items in the list. 
  1222.  
  1223.            Note:- This is not supported by all browsers. 
  1224.  
  1225.  
  1226. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1227.  
  1228.  
  1229. <MENU> 
  1230. <LI> Item text ... 
  1231. </MENU> 
  1232.  
  1233.  
  1234. ΓòÉΓòÉΓòÉ 42. <OL> - Ordered List. ΓòÉΓòÉΓòÉ
  1235.  
  1236.  
  1237. This tag defines a list where each item is assigned a number. This makes it 
  1238. very useful insituations such as instruction manuals. 
  1239.  
  1240. All items within this list must be preceeded with a <LI> tag. 
  1241.  
  1242.  
  1243. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1244.  
  1245.  
  1246.  COMPACT 
  1247.            This parameter cause the browser to reduce the amount of space 
  1248.            between items in the list. 
  1249.  
  1250.            Note:- This is not supported by all browsers. 
  1251.  
  1252.  TYPE="A | a | I | i | 1" 
  1253.            This parameter specifies the numbering system to be used. 
  1254.            A - Uppercase alphabetic letters. 
  1255.            a - Lowercase alphabetic letters. 
  1256.            I - Uppercase Roman letters. 
  1257.            i - Lowercase Roman letters. 
  1258.            1 - Aribic numbers (default). 
  1259.  
  1260.  
  1261. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1262.  
  1263.  
  1264. <OL TYPE="A | a | I | i | 1"> 
  1265. <LI> Item text ... 
  1266. </OL> 
  1267.  
  1268.  
  1269. ΓòÉΓòÉΓòÉ 43. <UL> - Un-Ordered List. ΓòÉΓòÉΓòÉ
  1270.  
  1271.  
  1272. This tag defines a list where each item is unordered. It therefore assigns a 
  1273. bullet to indicate the new item. This makes it useful for such things as 
  1274. listing software features etc. 
  1275.  
  1276. All items within this list must be preceeded with a <LI> tag. 
  1277.  
  1278.  
  1279. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1280.  
  1281.  
  1282.  COMPACT 
  1283.            This parameter cause the browser to reduce the amount of space 
  1284.            between items in the list. 
  1285.  
  1286.            Note:- This is not supported by all browsers. 
  1287.  
  1288.  TYPE="DISC | CIRCLE | SQUARE" 
  1289.            This parameter specifies the bullet type to be used. 
  1290.  
  1291.  
  1292. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1293.  
  1294.  
  1295. <UL TYPE="DISC | CIRCLE | SQUARE"> 
  1296. <LI> Item text ... 
  1297. </UL> 
  1298.  
  1299.  
  1300. ΓòÉΓòÉΓòÉ 44. <INPUT> - Data Input Objects. ΓòÉΓòÉΓòÉ
  1301.  
  1302.  
  1303. There is no corresponding end tag for <INPUT>. 
  1304.  
  1305. This tag defines a form object. There are a number available: 
  1306.  
  1307.      Text Entry fields. These are used to collect textural data. They only 
  1308.       expect a single line of text. 
  1309.  
  1310.      Password Entry fields. These are used to collect a password. Any typed 
  1311.       characters are replaced with a "*" character. 
  1312.  
  1313.      Hidden Data fields. These are used to pass predefined strings to the CGI 
  1314.       script. Usually such things as a file name, screen name, directory, etc. 
  1315.  
  1316.      CheckBoxes. Standard window checkboxes to indicate an On/Off state. 
  1317.  
  1318.      Radio Buttons. Multichoice selections. Again standard window stuff. 
  1319.  
  1320.      Submit Buttons. Used to submit the form to the CGI script for processing. 
  1321.  
  1322.      Reset Buttons. Reset and blanks the form. 
  1323.  
  1324.      Image Buttons. Uncommon, but allows you to design your own buttons. 
  1325.  
  1326.  Each form object that you add to a HTML page must have a couple of things so 
  1327.  that the CGI script can understand what to do with the data. Firstly it must 
  1328.  have a TYPE parameter which tells it which of the above objects is being 
  1329.  defined, and secondly it must have a NAME parameter which defines the varibale 
  1330.  to be used for passing the objects data to the script. 
  1331.  
  1332.   The requirements of other parameters is dependant on which type of object is 
  1333.  being used. 
  1334.  
  1335.  
  1336. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1337.  
  1338.  
  1339.  TYPE="TEXT | PASSWORD | CHECKBOX | HIDDEN | RADIO | SUBMIT | RESET | IMAGE" 
  1340.            This parameter is require. 
  1341.  
  1342.            This parameter defines the type of object being created. 
  1343.  
  1344.  NAME="Name" 
  1345.            This parameter is require. 
  1346.  
  1347.            This parameter specifies the name for the variable that will be 
  1348.            passed to the CGI script. It must be unique within the form and it 
  1349.            must follow any naming conventions that the scripting language has. 
  1350.  
  1351.  VALUE="Value" 
  1352.            Value has different meanings depending on the object type. If it is 
  1353.            a text entry field then it is the default text to be displayed. For 
  1354.            radio buttons and checkboxes it is the value to be displayed and is 
  1355.            also the value passed to the script to indicated that the item has 
  1356.            been selected. For Submit and Reset buttons it is the text to be 
  1357.            displayed on the buttton. 
  1358.  
  1359.  SIZE=n 
  1360.            N is the visible size of textural fields in characters. Hidden 
  1361.            fields do not need this parameter. 
  1362.  
  1363.  MAXLENGTH=n 
  1364.            n is the maximum numbr of characters the field will accept. Only 
  1365.            relevant for text entry fields and password fields. 
  1366.  
  1367.  CHECKED 
  1368.            For radio buttons and checkboxes, this sets the object to selected 
  1369.            before the document is displayed to the user. 
  1370.  
  1371.  ALIGN="TOP | MIDDLE | BOTTOM" 
  1372.            This sets the alignment of objects when graphics are also within the 
  1373.            <FORM> ... </FORM> boundaries. Refer to the <IMG> tag for further 
  1374.            information. 
  1375.  
  1376.  
  1377. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1378.  
  1379.  
  1380. <INPUT TYPE="TEXT | PASSWORD | CHECKBOX | HIDDEN | RADIO | SUBMIT | RESET | 
  1381. IMAGE" NAME="Name" VALUE="Value" SIZE="n" MAXLENGTH="n" CHECKED ALIGN="TOP | 
  1382. MIDDLE | BOTTOM"> 
  1383.  
  1384.  
  1385. ΓòÉΓòÉΓòÉ 45. <OPTION> - Selection List Item. ΓòÉΓòÉΓòÉ
  1386.  
  1387.  
  1388. There is no corresponding end tag for <OPTION>. 
  1389.  
  1390. This tag is only valid within a <SELECT> ... </SELECT> tag. It defines a item 
  1391. in a selection list which you can select. For example if you wanted to offer a 
  1392. list including oranges, apples and pears for selection, then you would need to 
  1393. define a <OPTION> tag for each one. 
  1394.  
  1395.  
  1396. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1397.  
  1398.  
  1399.  VALUE="Value" 
  1400.            Value is the text string that will be displayed in the selection box 
  1401.            as well as the text string that will be returned to the CGI script. 
  1402.  
  1403.  SELECTED 
  1404.            This defines this item as the default item in the list. 
  1405.  
  1406.  
  1407. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1408.  
  1409.  
  1410. <SELECT> 
  1411. <OPTION VALUE="Value"> 
  1412. <OPTION VALUE="Value" SELECTED> 
  1413. <OPTION VALUE="Value"> 
  1414. </SELECT> 
  1415.  
  1416.  
  1417. ΓòÉΓòÉΓòÉ 46. <SELECT> - Selection List. ΓòÉΓòÉΓòÉ
  1418.  
  1419.  
  1420. The <SELECT> tag defines a group of <OPTION> tags which will be presented as a 
  1421. scrollable list of items for selection. 
  1422.  
  1423.  
  1424. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1425.  
  1426.  
  1427.  NAME="Name" 
  1428.            This parameter is require. 
  1429.  
  1430.            This parameter specifies the name for the variable that will be 
  1431.            passed to the CGI script. It must be unique within the form and it 
  1432.            must follow any naming conventions that the scripting language has. 
  1433.  
  1434.  SIZE=n 
  1435.            N is the number of lines to be visible when the form is displayed. 
  1436.            The user can then scroll through this to access other options. 
  1437.  
  1438.  MULTIPLE 
  1439.            Allows the user to select multiple items at a single time. 
  1440.  
  1441.  
  1442. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1443.  
  1444.  
  1445. <SELECT NAME="Name" SIZE=n MULTIPLE> 
  1446. <OPTION VALUE="Value"> 
  1447. <OPTION VALUE="Value" SELECTED> 
  1448. <OPTION VALUE="Value"> 
  1449. </SELECT> 
  1450.  
  1451.  
  1452. ΓòÉΓòÉΓòÉ 47. <TEXTAREA> - Multi-Line Text input. ΓòÉΓòÉΓòÉ
  1453.  
  1454.  
  1455. The <TEXTAREA> tag defines a multi-line textarea on the pdocument which can be 
  1456. used for more complex textural entry. For example they are most used in email 
  1457. pages, or pages where you can write comments, replies, etc. 
  1458.  
  1459. To create some default text for a textarea, simple place it between the 
  1460. <TEXTAREA> and </TEXTAREA> tags. 
  1461.  
  1462.  
  1463. ΓòÉΓòÉΓòÉ <hidden> Parameters ΓòÉΓòÉΓòÉ
  1464.  
  1465.  
  1466.  NAME="Name" 
  1467.            This parameter is require. 
  1468.  
  1469.            This parameter specifies the name for the variable that will be 
  1470.            passed to the CGI script. It must be unique within the form and it 
  1471.            must follow any naming conventions that the scripting language has. 
  1472.  
  1473.  ROWS=n 
  1474.            N is the number of rows of text to be displayed. To get more a 
  1475.            scroll bar is added automatically. 24 is the default. 
  1476.  
  1477.  COLS=n 
  1478.            N is the number of characters wide that the textare will be. 80 is 
  1479.            the default. 
  1480.  
  1481.  
  1482. ΓòÉΓòÉΓòÉ <hidden> Syntax ΓòÉΓòÉΓòÉ
  1483.  
  1484.  
  1485. <TEXTAREA NAME="Name ROWS="n COLS="n> 
  1486.  
  1487.  ... Default text goes here .... 
  1488.  
  1489. </TEXTAREA>