home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 25 / nopv25.iso / 040A / GREED.ZIP / HTML.FN@ / HTML.FNC (.txt)
Encoding:
OS/2 INI File  |  1996-05-24  |  9.9 KB  |  366 lines

  1. HTML Graphics
  2. A Simple reference
  3. <fig src="FILENAME.GIF">
  4. ... some text ...
  5. </fig>
  6. Align left of text
  7. <fig src="FILENAME.GIF" align=left>
  8. ... some text ...
  9. </fig>
  10. Align on L/S of page
  11. <fig src="FILENAME.GIF" align=bleedleft>
  12. ... some text ...
  13. </fig>
  14. Align right of text
  15. <fig src="FILENAME.GIF" align=right>
  16. ... some text ...
  17. </fig>
  18. Align on R/S of page
  19. <fig src="FILENAME.GIF" align=bleedright>
  20. ... some text ...
  21. </fig>
  22. Space Graphic Vertical
  23. <img src="FILENAME.GIF" vspace=(#nr)>
  24. Space Graphic Horizontal
  25. <img src="FILENAME.GIF" hspace=(#nr)>
  26. Frame Graphic
  27. <img src="FILENAME.GIF" border=(pixl_cnt)>
  28. GIF with caption
  29. <fig src="filename.gif">
  30. <caption> ... Caption-text....</caption>
  31. </fig>
  32. GIF with credits
  33. <fig src="filename.gif">
  34. <credit> ... text....</credit>
  35. </fig>
  36. GIF caption align left & Above
  37. <img src="filename.gif" align=top>
  38. GIF caption align Left & Middle
  39. <img src="filename.gif" align=middle>
  40. GIF caption align left & Bottom
  41. <img src="filename.gif" align=bottom>
  42. GIF Scaling - Width
  43. <img src="filename.gif" width=(%)>
  44. GIF Scaling - Height
  45. <img src="filename.gif" width=(%)>
  46. Reference Sensitive Example
  47. <fig src="filename.gif">
  48. <li><a href="filename1.htm" shape="rect x,y,w,h">TEXT</a>
  49. <li><a href="filename2.htm" shape="circle x,y,r">TEXT</a>
  50. <li><a href="filename3.htm, shape="polygon x1,y1,x2,y2,...">TEXT</a>
  51. </ul>
  52. </fig> **NOTE: x=pixels from left y=pix from above r=radius TEXT= alternate to gif
  53. Flow text around (L/S)
  54. <img src="FILENAME.GIF" align=left>
  55. Flow text around (R/S)
  56. <img src="FILENAME.GIF" align=right>
  57. Reference Absolute
  58. <img src="file://localhost/[Drv]:/[path]/FILENAME.GIF">
  59. Reference in same Directory
  60. <img src="FILENAME.GIF">
  61. Reference Relative
  62. <img src="../[path]/FILENAME.GIF">
  63. HTML Addressing and Referencing
  64. Set Anchor in current document
  65. <a name="Eyecatcher"> ....</a>
  66. Refer to Anchor (Current doc)
  67. <a href="Eyecatcher"> text ....</a>
  68. Refer to Anchor (Another doc)
  69. <a href="file.htm">
  70. Ref-text...
  71. Refer URL-doc
  72. <a href="[Protocol]://Server/[path]/Filename">
  73. Ref-text...
  74. Refer to HTML-File
  75. HTTP://
  76. Refer to FTP-Server
  77. FTP://
  78. Refer to Telnet-Server
  79. TELNET://
  80. Refer to Gopher-Server
  81. GOPHER://
  82. Refer to NewsGroups
  83. NEWS://
  84. Refer to E-Mail Address
  85. mailto:
  86. Refer Absolute in other Directory
  87. <a href="file://localhost/[DRIVE:]/[path]/file.htm">
  88. Ref-text...
  89. Refer Relative in other Directory
  90. <a href="../[path]/file.htm">
  91. Ref-text...
  92. HTML Text Formatting
  93. Preformatted text
  94. <pre>
  95.  ....TEXT....
  96. </pre>
  97. Block Quote text
  98. <blockquote>
  99.  ....Quoted TEXT....
  100. </blockquote>
  101. Emphatic text
  102.  ....TEXT....
  103. </em>
  104. Thicken text
  105.  ....TEXT....
  106. </tt>
  107. Quote
  108. <cite>
  109.  ....TEXT....
  110. </cite>
  111. Short Quote
  112.  ....TEXT....
  113. Source Code
  114. <code>
  115.  ....Source Code Text....
  116. </code>
  117. Terminal Input
  118. <kbd>
  119.   Keystrokes come here
  120. </kbd>
  121. Variable Input
  122. <var>
  123.   Input come here
  124. </var>
  125. Sample Text
  126. <samp>
  127.  .... Sample text ....
  128. </samp>
  129. Italics
  130. <i> ....
  131. Underlined
  132. <u> ....
  133. Blinking
  134. <blink> ....
  135. </blink>
  136. Strike through
  137. <s> ....
  138. Uppercase
  139. <big> ....
  140. </big>
  141. Lowercase
  142. <small> ....
  143. </small>
  144. Subscript
  145. <sub> ....
  146. </sub>
  147. Superscript
  148. <sup> ....
  149. </sup>
  150. <b> ....
  151. Emphasis Strong
  152. <strong>
  153.  ....TEXT....
  154. </strong>
  155. HTML Special characters
  156. a_Umlaut
  157. ä
  158. A_Umlaut
  159. Ä
  160. o_Umlaut
  161. ö
  162. O_Umlaut
  163. Ö
  164. u_Umlaut
  165. ü
  166. U_Umlaut
  167. Ü
  168. sz_Ligatur
  169. ß
  170. n-wide space
  171. &ensp
  172. n-wide dash
  173. &endash
  174. m-wide space
  175. &emdash
  176. Blank without break
  177.  
  178. Less than sign
  179. Greater than (<)
  180. Ampersand (&)
  181. Quote
  182. "
  183. HTML Paragraph / Text control
  184. Left justified
  185. <p align=left>
  186. Right justified
  187. <p align=right>
  188. Centered
  189. <p align=center>
  190. Center line(s)
  191. <center>
  192. ...text...
  193. </center>
  194. Line-break (immediate)
  195. No-Break area
  196. <nobr>
  197. ...text...
  198. </nobr>
  199. Line break in "No-Break" area
  200. <wbr>
  201. ...text...
  202. </wbr>
  203. Header level 1.
  204. ...text...
  205. </h1>
  206. Header level 2.
  207. ...text...
  208. </h2>
  209. Header level 3.
  210. ...text...
  211. </h3>
  212. Header level 4.
  213. ...text...
  214. </h4>
  215. Header level 5.
  216. ...text...
  217. </h5>
  218. Header level 6.
  219. ...text...
  220. </h6>
  221. Header align Left
  222. <h# align=left>
  223. ...text...
  224. </h#>
  225. Header align Center
  226. <h# align=center>
  227. ...text...
  228. </h#>
  229. Header align Right
  230. <h# align=right>
  231. ...text...
  232. </h#>
  233. Bullet List
  234. <li> ........
  235. <li> ........
  236. <li> ........
  237. </ul>
  238. Bullet list w/ Square Bullets
  239. <ul type=square>
  240. <li> ........
  241. <li> ........
  242. <li> ........
  243. </ul>
  244. Bullet list w/ Disk Bullets
  245. <ul type=disk>
  246. <li> ........
  247. <li> ........
  248. <li> ........
  249. </ul>
  250. Define Numbered list (1,2,3,...)
  251. <li> ........
  252. <li> ........
  253. <li> ........
  254. </ol>
  255. Define List UC-Alpha (A,B,C,...)
  256. <ol type=A>
  257. <li> .......
  258. <li> .......
  259. <li> .......
  260. <li> .......
  261. </ol>
  262. Define List LC-Alpha list(a,b,c,...)
  263. <ol type=A>
  264. <li> .......
  265. <li> .......
  266. <li> .......
  267. <li> .......
  268. </ol>
  269. Define List w/ Start Nr.
  270. <ol start=(A-NBR)>
  271. <li> .......
  272. <li> .......
  273. <li> .......
  274. <li> .......
  275. </ol>
  276. Directory List
  277. <li> .......
  278. </dir>
  279. List entry
  280. Define Glossary
  281. <dt> ...Expression...
  282. </dt>
  283. <dd> ...Expression Definition...
  284. </dd>
  285. <dt> ...Expression...
  286. </dt>
  287. <dd> ...Expression Definition...
  288. </dd>
  289. </dl>
  290. End Numbered list
  291. </ol>
  292. End Bullet list
  293. </ol>
  294. Bullet list w/ Round Bullets
  295. <ul type=circle>
  296. <li> ........
  297. <li> ........
  298. <li> ........
  299. </ul>
  300. Define List LC Roman list(i,ii,iii,...)
  301. <ol type=i>
  302. <li> .......
  303. <li> .......
  304. <li> .......
  305. <li> .......
  306. </ol>
  307. Define List UC Roman list(I,II,III,...)
  308. <ol type=I>
  309. <li> .......
  310. <li> .......
  311. <li> .......
  312. <li> .......
  313. </ol>
  314. HTML Forms
  315. Define a Form
  316. <form action="(WEBPAGE/URL)" method=[get od.post]>
  317. ... Form elements and other HTML elements
  318. </form>
  319. Entry URL-Address
  320. <input name="(variable)" type=URL >
  321. Multiple Selections
  322. <select name="VARIABLE" size=#(chars)>
  323. <option>show text
  324. </select>
  325. Radio Checkbox
  326. <input type=checkbox name="VARIABLE" value="(data)">
  327. Entry Date
  328. <input name="(variable)" >
  329. Enter Button
  330. <input type=submit value="(VARIABLE)">
  331. Entry Undo-Button
  332. <input type=reset value="(VARIABLE)">
  333. Multiple Line Entry Field
  334. <textarea action=" rows=#(ROWS) cols=#(COLS)>
  335. ... Empty or predefined text ...
  336. </textarea>
  337. Radio Button
  338. <input type=radio name="VARIABLE" value="(data)">
  339. Radio Check Box
  340. <input type=checkbox name="VARIABLE" value="(data)">
  341. Entry Field
  342. <input name="(variable)" size=#(min_char)
  343.                          maxlength=#(max_len)>
  344. Entry Floating point
  345. <input name="(variable)" type=float size=#(min_char)
  346.                          maxlength=#(max_len)>
  347. Entry Whole-Number
  348. <input name="(variable)" type=int size=#(min_char)
  349.                          maxlength=#(max_len)>
  350. Radio Button Grouping
  351. <input type=checkbox name="VARIABLE" value="(data1)">
  352. <input type=checkbox name="VARIABLE" value="(data2)">
  353. <input type=checkbox name="VARIABLE" value="(data3)">
  354. ......
  355. HTML  Example
  356. Example HTML
  357. <html>
  358. <head>
  359. A Header.....
  360. </head>
  361. <body>
  362. Our text goes here!
  363. Here is more!!!!
  364. </body>
  365. </html>
  366.