home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Html / qdiva / HTML.SKL < prev    next >
Encoding:
Text File  |  1996-01-07  |  7.2 KB  |  353 lines

  1. ********************************************************
  2. **** Skeletons are pretty simple.
  3. ****
  4. **** // {{description (newline)
  5. ****   body of skeleton
  6. **** (newline) // }}
  7. ****
  8. **** // {{{desc - new tree heading
  9. ****
  10. **** Anything not bracketed by // {{ and // }} is ignored
  11. ****
  12. **** If the body contains $SEL$, the current selection in the
  13. **** source code will be substituted.  For example:
  14. ****     <B>$SEL$</B>
  15. **** will surround the selected text with HTML Bold tags
  16. ****
  17. **** Please send updated skeletons to : FRISKEL@INCH.COM and they
  18. **** will be available for all to use.
  19. ********************************************************
  20.  
  21. ********************************************************
  22. //{{{Pages
  23.  
  24. //{{Basic HTML Page
  25. <HTML>
  26.  
  27. <HEAD>
  28. <!-- created: 1/1/96 01:01:00 AM -->
  29. <TITLE>Page Title</TITLE>
  30. </HEAD>
  31.  
  32. <BODY>
  33. <H1>First Heading</H1>
  34. Add body text here.
  35. <HR>
  36. Last Updated: Friday, January 01, 1996
  37. </BODY>
  38.  
  39. </HTML>
  40. //}}
  41. ********************************************************
  42. //{{{Head Elements
  43. //{{Is Index 
  44. <ISINDEX> 
  45. //}}
  46. //{{Is Index (with prompt) 
  47. <ISINDEX PROMPT="text"> 
  48. //}}
  49. //{{Base Reference 
  50. <BASE HREF="url">
  51. //}}
  52. //{{Link rev,rel 
  53. <LINK REV="text" REL="Text" HREF="URL">
  54. //}}
  55. //{{Meta tag 
  56. <META>
  57. //}}
  58. ********************************************************
  59. //{{{Format (Physical: Bold,Italic,etc.)
  60. //{{Bold 
  61. <B>$SEL$</B>
  62. //}}
  63. ********************************************************
  64. //{{Italic 
  65. <I>$SEL$</I>
  66. //}}
  67. ********************************************************
  68. //{{Strikeout 
  69. <S>$SEL$</S>
  70. //}}
  71. ********************************************************
  72. //{{Underline 
  73. <U>$SEL$</U>
  74. //}}
  75. ********************************************************
  76. //{{Blink 
  77. <BLINK>$SEL$</BLINK>
  78. //}}
  79. ********************************************************
  80. //{{Font size. TODO: Set n to size (1-7) 
  81. <FONT SIZE=n>$SEL$</FONT>
  82. //}}
  83. ********************************************************
  84. //{{Base Font size. TODO: Set n to size (1-7) 
  85. <BASEFONT SIZE=n>
  86. //}}
  87. ********************************************************
  88. //{{{Page Structure
  89. //{{Comment 
  90. <<!-- comment -->
  91. //}}
  92.  
  93. //{{TITLE
  94. <TITLE>$SEL$</TITLE>
  95. //}}
  96. //{{Body 
  97. <BODY>
  98. Put body here
  99. $SEL$
  100. </BODY>
  101. //}}
  102.  
  103. ********************************************************
  104. //{{{Netscape Extension
  105. --------------------------------------
  106. //{{HR Attribute Extensions
  107. //{{Align left
  108. ALIGN=LEFT
  109. //}}
  110. //{{Align right
  111. ALIGN=RIGHT
  112. //}}
  113. //{{Align center
  114. ALIGN=CENTER
  115. //}}
  116. //{{Size
  117. SIZE=n
  118. //}}
  119. //{{Width
  120. WIDTH=n
  121. //}}
  122. //{{Width as percent
  123. WIDTH=n%
  124. //}}
  125. //{{Noshade
  126. NOSHADE
  127. //}}
  128. -------------------------------------
  129. //{{{Links
  130. //{{link to an URL
  131. <A> HREF="HTTP://url">Description of link</A>
  132. //}}
  133. //{{link to label in another document
  134. <A> HREF="HTTP://url#label">description of link</A>
  135. //}}
  136. //{{link to label in current document
  137. <A> HREF="#label">description of link</A>
  138. //}}
  139. //{{Define a label in current document
  140. <A> NAME="label"></A>
  141. //}}
  142. -------------------------------------
  143. //{{{Images
  144. //{{Basic image tag
  145. <IMG SRC="URL" ALT="Text">
  146. //}}
  147. //{{Image (aligned top)
  148. <IMG SRC="URL" ALT="Text" ALIGN=TOP>
  149. //}}
  150. //{{Image (aligned bottom)
  151. <IMG SRC="URL" ALT="Text" ALIGN=BOTTOM>
  152. //}}
  153. //{{Image (aligned middle)
  154. <IMG SRC="URL" ALT="Text" ALIGN=MIDDLE>
  155. //}}
  156. //{{Image that's an imagemap
  157. <IMG SRC="URL" ISMAP>
  158. //}}
  159. -------------------------------------
  160. //{{{Netscape Image attribute extensions
  161. //{{Alignment
  162. ALIGN=LEFT|RIGHT|TEXTTOP|ABSMIDDLE|BASELINE|ABSBOTTOM
  163. //}}
  164. //{{Dimensions
  165. WIDTH=n HEIGHT=n
  166. //}}
  167. //{{Border size (pixels)
  168. BORDER=n
  169. //}}
  170. //{{Runaround space (pixels)
  171. HSPACE=n VSPACE=n
  172. //}}
  173. //{{Low-res source
  174. LOWSRC="URL"
  175. //}}
  176.  
  177. ********************************************************
  178. //{{{Block Formatting
  179. --------------------------------------
  180. //{{Heading 1 
  181. <H1>$SEL$</H1>
  182. //}}
  183. --------------------------------------
  184. //{{Heading 2
  185. <H2>$SEL$</H2>
  186. //}}
  187. -------------------------------------------------------
  188. //{{Heading 3
  189. <H3>$SEL$</H3>
  190. //}}
  191. -------------------------------------------------------
  192. //{{Paragragh
  193. <P>$SEL$</P>
  194. //}}
  195. -------------------------------------------------------
  196. //{{Center
  197. <CENTER>$SEL$</CENTER>
  198. //}}
  199. -------------------------------------------------------
  200. //{{Heading with alignent TODO: Choose alignment
  201. <H2 ALIGN=LEFT|CENTER|RIGHT>$SEL$</H2>
  202. //}}
  203.  
  204. //{{Address
  205. <ADDRESS>$SEL$</ADDRESS>
  206. //}}
  207. //{{Blockqoute
  208. <BLOCKQOUTE>$SEL$</BLOCKQOUTE>
  209. //}}
  210. //{{Preformatted Text
  211. <PRE>$SEL$</PRE>
  212. //}}
  213. -------------------------------------------------------
  214. ********************************************************
  215. //{{{Logical formats
  216. --------------------------------------
  217. //{{Emphasis 
  218. <EM>$SEL$</EM>
  219. //}}
  220. --------------------------------------
  221. //{{Strong
  222. <STRONG>$SEL$</STRONG>
  223. //}}
  224. -------------------------------------------------------
  225. //{{Citation
  226. <CITE>$SEL$</CITE>
  227. //}}
  228. -------------------------------------------------------
  229. //{{Sample code
  230. <CODE>$SEL$</CODE>
  231. //}}
  232. -------------------------------------------------------
  233. //{{Keyboard Input
  234. <KBD>$SEL$</KBD>
  235. //}}
  236. -------------------------------------------------------
  237. //{{Variable
  238. <VAR>$SEL$</VAR>
  239. //}}
  240.  
  241. ********************************************************
  242. //{{{Breaks.
  243. //{{Line Break
  244. <BR>
  245. //}}
  246. -------------------------------------------------------
  247. //{{Horizontal Rule (line)
  248. <HR>
  249. //}}
  250.  
  251.  
  252. ********************************************************
  253. //{{{Special characters
  254. ********************************************************
  255. //{{Registered TM
  256. ® 
  257. //}}
  258. //{{Copyright (C)
  259. © 
  260. //}}
  261.  
  262. //{{Registered TM (NETSCAPE)
  263. ® 
  264. //}}
  265. //{{Copyright (c) (NETSCAPE)
  266. © 
  267. //}}
  268.  
  269. //{{'<'
  270. //}}
  271.  
  272. //{{Ascii code (replace n with the code)
  273. &#n; 
  274. //}}
  275.  
  276. ********************************************************
  277. //{{{Lists
  278. //{{Ordered
  279. <OL>
  280. <LI>item one
  281. <LI>item two
  282. <LI>item three
  283. </OL>
  284. //}}
  285. ********************************************************
  286. //{{Unordered
  287. <UL>
  288. <LI>item one
  289. <LI>item two
  290. <LI>item three
  291. </UL>
  292. //}}
  293. ********************************************************
  294. //{{MENU
  295. <MENU>
  296. <LI>item one
  297. <LI>item two
  298. <LI>item three
  299. </MENU>
  300. //}}
  301. ********************************************************
  302. //{{Direcory (Typically bulleted)
  303. <DIR>
  304. <LI>item one
  305. <LI>item two
  306. <LI>item three
  307. </DIR>
  308. //}}
  309. ********************************************************
  310. //{{Definition list TODO: remove COMPACT if desired
  311. <DL COMPACT>
  312. <DT>item one<DD>Text for item one
  313. <DT>item two<DD>Text for item two
  314. <DT>item three<DD>Text for item three
  315. </DL>
  316. //}}
  317. ********************************************************
  318. //{{Nested
  319. <OL>
  320. <LI>Fruit:
  321.   <UL>
  322.     <LI>Apples
  323.     <LI>Pears
  324.     <LI>Kiwi
  325.   </UL>
  326. <LI>Vegetables:
  327.   <OL>
  328.     <LI>Potato 
  329.     <LI>Corn
  330.     <LI>Catsup
  331.   </OL>
  332. </OL>
  333. //}}
  334. //{{Netscape extended unordered list tag
  335. <UL TYPE=DISC|CIRCLE|SQUARE>
  336. //}}
  337. //{{Netscape extended list item tag
  338. <LI TYPE=DISC|CIRCLE|SQUARE>
  339. //}}
  340.  
  341. ********************************************************
  342. //{{{Tables
  343. //{{Simple
  344. <TABLE BORDER UNITS=en COLSPEC="C20, D50" WIDTH 70 ALIGN=CENTER>
  345. <CAPTION><H3>Calorie Table</H3></CAPTION>
  346. <TR><TH>Item <TH>Value
  347. <TR><TD>Totato <TD> Good
  348. <TR><TD>Steak  <TD> Lots
  349. <TR><TD>Lettuce<TD> None
  350. </TABLE>
  351. //}}
  352.