home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 1998 April / Freeware-CD.bin / Freeware / utils / notetab.EXE / HTML.CLB < prev    next >
Encoding:
Text File  |  1998-01-28  |  6.5 KB  |  281 lines

  1. = V4 MultiLine NoSorting TabWidth=30
  2.  
  3. H=";Document Elements"
  4. Most of these elements are required within an HTML document for it to conform to HTML standards.
  5.  
  6. H="Base"
  7. <BASE HREF="^?[Base URL=^&]">
  8.  
  9.  
  10. H="Body"
  11. <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#FF0000" VLINK="#800000" ALINK="#FF00FF" BACKGROUND="^?[Background file name]">
  12.  
  13. H="HTML begin"
  14. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  15. <HTML>
  16. <HEAD>
  17. <TITLE>^?[Web page title]</TITLE>
  18.  
  19. <LINK REV="made" HREF="mailto:^?[Your E-mail address]">
  20. <META NAME="author" content="^?[Your name]">
  21. <META name="generator" content="Super NoteTab 2.63">
  22. <META name="keywords" content="^?[Web page keywords]">
  23. <META name="description" content="^?[Web page description]">
  24.  
  25. </HEAD>
  26.  
  27. <BODY BGCOLOR="#^?[Body color=Aquamarine^=70DB93|Black^=000000|Light Blue^=C0D9D9|Pale Green^=8FBC8F|Pink^=BC8F8F|_White^=FFFFFF|Yellow^=FFFF00]" BACKGROUND="^?[Background file name]">
  28.  
  29.  
  30. H="HTML end"
  31. </BODY>
  32. </HTML>
  33.  
  34.  
  35. H="Last updated..."
  36. Last updated on <^?[Format date==_Bold^=B|Italic^=I]>^[mmmm dd, yyyy^]</^?[Format date]>
  37.  
  38. H="Title"
  39. <TITLE>^&</TITLE>
  40.  
  41. H=";Anchor Elements"
  42. An anchor element is used to define the start and/or destination of a hypertext link.
  43.  
  44. H="Bookmark"
  45. <A NAME="^?[Bookmark label=]">^&</A>
  46.  
  47. H="Link"
  48. <A HREF="^?[Enter a URL]">^?[Enter a description for this link=^&]</A>
  49.  
  50. H="Link 2"
  51. <A HREF="^&">^?[=^&]</A>
  52.  
  53. H="Link to Bookmark"
  54. <A HREF="#^?[Link to Bookmark=]">^&</A>
  55.  
  56. H="Link with image"
  57. <A HREF="^?[Enter a URL]"><IMG SRC="^?[Image file name]" ALT="^?[Image text description=^&]" BORDER=0></A>
  58.  
  59. H="MailTo"
  60. <A HREF="mailto:^?[Enter email address=^&]">^?[Enter link text=^&]</A>
  61.  
  62.  
  63. H=";Block Formatting"
  64. These elements are used for the formatting of whole blocks of text within an HTML document.
  65.  
  66. H="Address"
  67. <ADDRESS>^&</ADDRESS>
  68.  
  69. H="Blockquote"
  70. <BLOCKQUOTE>^&</BLOCKQUOTE>
  71.  
  72. H="Center"
  73. <CENTER>^&</CENTER>
  74.  
  75. H="Line break"
  76. <BR>
  77.  
  78. H="Font Size"
  79. <FONT SIZE=^?[Font size=-7|-6|-5|-4|-3|-2|-1|_+1|+2|+3|+4|+5|+6|+7]>^&</FONT>
  80.  
  81. H="H1 header"
  82. <H1>^&</H1>
  83.  
  84. H="H2 header"
  85. <H2>^&</H2>
  86.  
  87. H="H3 header"
  88. <H3>^&</H3>
  89.  
  90. H="H4 header"
  91. <H4>^&</H4>
  92.  
  93. H="Horizontal line"
  94. <HR>
  95.  
  96. H="Paragraph"
  97. <P>
  98.  
  99. H="Plain Text"
  100. <PLAINTEXT>^&</PLAINTEXT>
  101.  
  102. H="Preformatted text"
  103. <PRE>^&</PRE>
  104.  
  105. H=";List Elements"
  106. List elements are used in the body of an HTML document and may be nested.
  107.  
  108. H="Definition list"
  109. <DL>
  110.   <DT>???<DD>???
  111.   <DT>???<DD>???
  112.   <DT>???<DD>???
  113. </DL>
  114.  
  115.  
  116. H="Directory List"
  117. <DIR>
  118.   <LI>
  119.   <LI>
  120.   <LI>
  121. </DIR>
  122.  
  123.  
  124. H="Menu List"
  125. <MENU>
  126.   <LI>
  127.   <LI>
  128.   <LI>
  129. </MENU>
  130.  
  131.  
  132. H="Ordered List"
  133. <OL>
  134.   <LI>
  135.   <LI>
  136.   <LI>
  137. </OL>
  138.  
  139.  
  140. H="Unordered list"
  141. <UL>
  142.   <LI>
  143.   <LI>
  144.   <LI>
  145. </UL>
  146.  
  147.  
  148. H=";Information Elements"
  149. Information type elements indicate to the browser that the enclosed text should be rendered in a way according to the browser, rather than using a specific formatting style.
  150.  
  151. H="Citation"
  152. <CITE>^&</CITE>
  153.  
  154. H="Code"
  155. <CODE>^&</CODE>
  156.  
  157. H="Comment"
  158. <!-- ^?[Comment=^&] -->
  159.  
  160. H="Emphasis"
  161. <EM>^&</EM>
  162.  
  163. H="Keyboard"
  164. <KBD>^&</KBD>
  165.  
  166. H="Strong"
  167. <STRONG>^&</STRONG>
  168.  
  169. H="Variable"
  170. <VAR>^&</VAR>
  171.  
  172. H=";Character Formatting"
  173. Character formatting elements produce strict rendering of the text.
  174.  
  175. H="Big Text"
  176. <BIG>^&</BIG>
  177.  
  178. H="Blink"
  179. <BLINK>^&</BLINK>
  180.  
  181. H="Bold"
  182. <B>^&</B>
  183.  
  184. H="Italic"
  185. <I>^&</I>
  186.  
  187. H="Small Text"
  188. <SMALL>^&</SMALL>
  189.  
  190. H="Strike"
  191. <STRIKE>^&</STRIKE>
  192.  
  193. H="Subscript"
  194. <SUB>^&</SUB>
  195.  
  196. H="Superscript"
  197. <SUP>^&</SUP>
  198.  
  199. H="Underline"
  200. <U>^&</U>
  201.  
  202. H=";Image Elements"
  203. The Image element is used to incorporate in-line graphics into an HTML document.
  204.  
  205. H="Embed"
  206. <EMBED SRC="^&">
  207.  
  208. H="Image"
  209. <IMG SRC="^?[Image file name]" ALT="^?[Image text description=^&]">
  210.  
  211. H="Image with size"
  212. <IMG SRC="^?[Image file name]" BORDER=^?[Border=0|1|2|3|4|5] HEIGHT=^?[Height] WIDTH=^?[Width] ALT="^?[Image text description=^&]">
  213.  
  214. H=";Form Elements"
  215. These elements are used to create forms.
  216.  
  217. H="Form"
  218. <FORM>
  219. ^&
  220. </FORM>
  221.  
  222.  
  223. H="Input"
  224. <INPUT NAME=^?[Input Name] TYPE=^?[Input Type=Checkbox|Hidden|Image|Password|Radio|Reset|Submit|Text|File]>^&</INPUT>
  225.  
  226. H="Multi-line Input Field"
  227. <TEXTAREA NAME=^?[Input Name] ROWS=^?[Rows] COLS=^?[Columns] WRAP=^?[Word Wrap=_OFF|VIRTUAL|PHYSICAL]>
  228. ^&
  229. </TEXTAREA>
  230.  
  231.  
  232. H="Option"
  233. <OPTION>
  234.  
  235. H="Select"
  236. <SELECT NAME="^&">
  237.   <OPTION>
  238.   <OPTION>
  239.   <OPTION>
  240. </SELECT>
  241.  
  242. H=";Table Elements"
  243. Table elements with tags to define rows and cells.
  244.  
  245. H="Caption"
  246. <CAPTION>^&</CAPTION>
  247.  
  248. H="Table"
  249. <TABLE ALIGN=^?[Align=_Left|Center|Right|Bleedleft|Bleedright|Justify] BORDER=^?[Border=_0|1|2|3|4|5|6|7|8] CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
  250. ^&
  251. </TABLE>
  252.  
  253.  
  254. H="TD table data cell"
  255. <TD ALIGN=^?[TD Align=_left|right|center] VALIGN=^?[TD VAlign=_top|middle|bottom|baseline] ^?[Other Attributes=ROWSPAN=|COLSPAN=|NOWRAP|BGCOLOR="#000000"]>^&</TD>
  256.  
  257. H="TH table heading cell"
  258. <TH>^&</TH>
  259.  
  260. H="TR table row"
  261. <TR ALIGN=^?[TR Align=_left|right|center] VALIGN=^?[TR VAlign=_top|middle|bottom|baseline]>^&</TR>
  262.  
  263. H=";Other Elements"
  264.  
  265. H="Apostrophe"
  266.  
  267. H="Quotes"
  268. “^&”
  269.  
  270. H="Applet"
  271. <APPLET CODE="^&" WIDTH=^?[Applet width] HEIGHT=^?[Applet height]>
  272.  
  273. </APPLET>
  274.  
  275.  
  276. H="Color"
  277. #^?[Choose a color=Aquamarine^=70DB93|Black^=000000|Blue^=0000FF|Bright Gold^=D9D919|Bronze^=8C7853|Brown^=A62A2A|Copper^=B87333|Cyan^=00FFFF|Dark Brown^=5C4033|Dark Green^=2F4F2F|Dark Orchid^=9932CD|Dark Purple^=871F78|Dark Slate Blue^=6B238E|Dark Slate Grey^=2F4F4F|Dark Wood^=855E42|Dim Grey^=545454|Gold^=CD7F32|Green^=00FF00|Green Copper^=527F76|Green Yellow^=93DB70|Grey^=C0C0C0|Light Blue^=C0D9D9|Light Grey^=A8A8A8|Light Steel Blue^=8F8FBD|Light Wood^=E9C2A6|Lime Green^=32CD32|Magenta^=FF00FF|Maroon^=8E236B|Medium Aquamarine^=32CD99|Medium Blue^=3232CD|Medium Turquoise^=70DBDB|Medium Violet Red^=DB7093|Medium Wood^=A68064|Navy Blue^=23238E|Neon Blue^=4D4DFF|Neon Pink^=FF6EC7|Orange^=FF7F00|Orange Red^=FF2400|Orchid^=DB70DB|Pale Green^=8FBC8F|Pink^=BC8F8F|Red^=FF0000|Sea Green^=238E68|Silver^=E6E8FA|Sky Blue^=3299CC|Very Dark Brown^=5C4033|Very Light Grey^=CDCDCD|Violet^=4F2F4F|White^=FFFFFF|Yellow^=FFFF00|Yellow Green^=99CC32]
  278.  
  279. H="About this library"
  280. ^!INFO=This library was written by Eric G.V. Fookes to serve as a demonstration of the varied tasks that can be performed by the Editor Clipbook. You are free to customize it any way you like!>>>>If you have a useful Clipbook library that you would like to share with other NoteTab users, please submit it to...>>>>fookes@sc2a.unige.ch>>>>Your library will then be added to the Clipbook repository on the web.