Up to this point, we have been looking at different HTML elements in isolation, but this lesson will put what we have learned together into a single web page. The page we will use is a step in the evolution of my personal web page located at http://lindorfer.us/wizard/index.html. I'm not going to use the actual web page at that location, because I don't want to have to rewrite this tutorial every time I change my own personal web page. The actual page we will be using is the one at PWP.html, which is close enough. You can view it as SOURCE to see how it is composed. We'll look at the source code one line at a time.
I'm using my own page because it contains elements that I like and think my viewers will understand and appreciate, but I don't have a monopoly on HTML writing. If you run across a web page that you think is really neat and you would like to imitate it, download it by Saveing it as source (not text) onto your desktop. If you are a microsoft or Windows fan, change it to a ".txt" file and then open it with your word processor and examine it. I would suggest locking it or saving it as a separate file somewhere else before you start messing with it, because chances are good that you'll mangle it the first few times you try to change it, and have to go back to the original, that might not be there any more.
A little trick I like to use is to change case of the HTML elements from upper to lower or vice versa when editing an existing document. This helps me find the additions or changes in the new document. I left some of these formatting changes in this document. It doesn't make any difference, since the clients recognize either upper or lower case.
HTML generators provide a handy means of producing HTML documents with minimum fuss, and most web page designers use them for that purpose. They also guarantee that the document will follow all the rules of whatever version of HTML the software generates, so syntactic mistakes in a software generated HTML document are rare.
Since we are trying to learn to compose in hypertext markup language, however, using a HTML generator program at this point is cheating, like using Cliff Notes for a book report. Learning the grade school elements, as we have been doing, is like learning to write in grade school. If you want to become a real journalist, you have to learn at the high school and college level by taking real courses, with books and stuff, and maybe even real teachers. But once you are familiar with the basics, it helps to look at pages written by others to see how they (or their HTML generation software) caused the page to be displayed the way it is, and how you could do the same thing in your web pages.
One of the things you'll notice right away is that most web pages contain stuff you don't understand. Most of this is generated by the HTML generator, the software program that produced the HTML text you're trying to understand. It means something to the client, usually a specific version the rules of which must be followed EXACTLY or the client will get confused. Most clients are pretty forgiving of minor errors in HTML produced by real humans, but if you tell the client that you are using "DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd," you better follow EXACTLY the rules at http://www.w3.org/TR/html4/loose.dtd or your product will be The Web Page from Hell and you'll never get it to display correctly!
My solution is to strip off all that stuff and see if the page still works. All the books I've read claim that you must have a DOCTYPE statement as the first line of an HTML document, but you don't need a DOCTYPE statement if your first entry is <HTML> and the client happily displays the page without one. The only thing you really nead between <head> and </head> are the <title> and </title> tags, and you don't really need those if you don't want a title. Same for comments. Delete anything between <!-- and --> or put in your own comments if you want.
Same with scripts. Delete them. You have to be careful here, because the script is there for a purpose, and the commands that implement it won't work and may make your computer crash. If you find a script that you like, though, copy it, try to figure out how it works, and then use it (unless the writer tells you not to - you don't want to run afoul of copyright restrictions). Otherwise, learn to live without scripts.
The viewer of your document will have decided upon a font size, type face, background color, link colors and so on in his preferences selection, so if you don't have any reason to change those, leave them alone. (I didn't follow this advice in my web page because I wanted it to be impressive.)
Feel free to play around with your sample document as much as you want. You can always reload, and nothing you are likely to do will hurt your computer. If it locks up, restart.
When you're done, save your document as a text file and then change the name to (whatever name you want with no spaces).htm. Then open it with your client (browser). It should show the title in the title space, and whatever stuff you put (or changed) in the body in your browser window.
You can do this over and over again by adding, deleting, and changing things. You can see what the source code looks like by opening the view menu of your client (browser) and choosing source.
If you have a word processor that opens TEXT documents as TEXT, whatever they're called (like I and many other Macintosh users do), just open your source file with your word processor and start creating. SAVE everything as TEXT, or your browser won't even recognize it's there. The name should include ".htm" or ".html" at the end, not ".txt."
Current Microsoft word processors display HTML documents as web pages, just as the clients designed for that purpose do. I don't like them for that reason. I like a word processor to be a word processor and a web browser to be a web browser. Unfortunately, Microsoft has a vested interest in discouraging people from learning HTML or writing HTML documents from scratch because Microsoft makes big money selling HTML writing programs that do that. Many commercial web page designers use these programs because they (the writers) don't really know how to write HTML, even though they're allegedly in the business of doing precisely that. Pages composed by Microsoft (or other HTML generation programs such as Netscape Composer) are redundant, wasteful of disk space and loading time, and difficult to edit. They also frequently compose documents so that only other browsers from the same company (Microsoft or Netscape, respectively) can read them the way they were intended by the designer. Although the Hypertext Markup Language itself allows one to display a web page in virtually any way he chooses, the HTML generators often make it essentially impossible to do anything the software developers didn't think you needed to do or didn't want you to do (or didn't know how to do themselves).
And as soon as a new version of HTML comes out, your expensive HTML generator program is obsolete!
Using an HTML generator to produce a web page is like hiring a Sanskrit or Bantu writer to write to a friend who happens to know a guy who reads Sanskirt and another one who reads Bantu. Why not just write to your friend in English? It takes a little more time, but you can say exactly what you want.
Having said that, Let's take a look at "John Lindorfer's Home page" at PWP.html. The following table explains the HTML elements it contains.
Text | What It Is | What It Does |
---|---|---|
<HTML> | HTML Tag | Introduces a HTML document |
<HEAD> | Head Tag | Identifies a document head |
<TITLE> | Title Tag | Identifies the document Title |
John Lindorfer's Home page | Text | Displays the text shown as the title |
</TITLE> | End TitleTag | Terminates the document Title |
</HEAD> | End Head Tag | Terminates the document Head |
<BODY TEXT="#FFFFFF" LINK="#00FF00" VLINK="#FFFF00" ALINK="#FF0000" BACKGROUND="http://lindorfer .us/wizard/Graphics/starfiel.jpg"> | Body Tag | Introduces the document Body, text colors, and background image |
<CENTER> | Center Tag | Centers the following text |
<H2> | Headline Tag | Introduces a #2 headline |
I'm John Lindorfer and I made this web page. | Text | Displays the text shown as a #2 headline |
</H2> | End Headline Tag | Terminates a #2 headline |
<p> | Paragraph Tag | Marks a paragraph transition |
<TABLE BORDER=5 width=242> | Table Tag | Introduces a table with a 5 pixel border and a width of 242 pixels. This table is used as a picture frame for the graphic "Dad.gif." |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<a href="http://lindorfer.us/ tinman/private/index.html"> | Link Tag | Introduces a link to the address shown |
<IMG SRC="http://lindorfer.us/ wizard/Graphics/Dad.gif" ALT="Me" HEIGHT=304 WIDTH=232> | Image Tag | Identifies the address of the image "Dad.gif" and displays it with a height of 304 pixels and a width of 232 pixels and the alternate text "Me." Note that this image is used as a link to http://lindorfer.us/tinman/private/index.html, which is a protected site. |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
<br> | Line Break Tag | Terminates a line of text |
<H3> | Headline Tag | Introduces a #3 headline |
<a target="_blank" href="http:// lindorfer.us/wizard/Sorry.html"> | Link Tag | Introduces a link to the address shown |
Click here to send a sorry Democrat to Canada | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
</H3> | End Headline Tag | Terminates a #3 headline |
<H3> | Headline Tag | Introduces a #3 headline |
<a href="http://lindorfer.us/ tinman"> | Link Tag | Introduces a link to the address shown |
Click here to see our vacation pictures in Middle Earth | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
</H3> | End Headline Tag | Terminates a #3 headline |
<H3> | Headline Tag | Introduces a #3 headline |
<a href="http://lindorfer.us/ wizard/Rich.html"> | Link Tag | Introduces a link to the address shown |
Click here to find out how to become richer than Bill Gates! | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
</H3> | End Headline Tag | Terminates a #3 headline |
<H3> | Headline Tag | Introduces a #3 headline |
<a href="http://lindorfer.us/ wizard/Welcometextonly.html"> | Link Tag | Introduces a link to the address shown |
Click here for a text only version | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
- | Text | Displays the text shown |
<a href="mailto:wizard@datasync.com"> | Mailto Link | Invokes the e-mail client |
Click here to send me e-mail | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
</H3> | End Headline Tag | Terminates a #3 headline |
<p> | Paragraph Tag | Marks a paragraph transition |
<IMG SRC="http://lindorfer.us/ wizard/Graphics/Anim_ente_flyby .gif" ALT="Starship Voyager Flyby" HEIGHT=83 WIDTH=554> | Image Tag | Identifies the address of the image "Anim_ente_flyby.gif" and displays it with a height of 83 pixels and a width of 554 pixels |
<p> | Paragraph Tag | Marks a paragraph transition |
<TABLE border=5> | Table Tag | Introduces a table with a border width of 5 pixels. This is the table containing the "Star Trek" song. |
<TR> | Table Row Tag | Introduces a table row |
<TR> | Table Row Tag | Introduces a table row |
<TD colspan=2 align="left"> | Table Data Tag | Introduces left aligned data in a cell having a span of 2 columns |
Come with me on a voyage of discov'ry; a universe of countless stars,so very far from home. | Text | Displays the text shown |
<br> | Line Break Tag | Terminates a line of text |
Take my hand, and with my love to sustain you, eternally, you'll never be alone. | Text | Displays the text shown |
<br> | Line Break Tag | Terminates a line of text |
Worlds of wonderment and high fantasy; together, unbounded, our spirits may roam, oh... | Text | Displays the text shown |
<br> | Line Break Tag | Terminates a line of text |
Take my hand, and all my love to sustain you, until we take that final voyage home. | Text | Displays the text shown |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
<TR> | Table Row Tag | Introduces a table row |
<td align="center" valign="middle"> | Table Data Tag | Introduces data in a cell, centers it, and aligns it in the middle vertically |
<EMBED SRC="http://lindorfer.us/ wizard/Graphics/Voyager.mid" width=140 height=16 controls="standard" autostart="true" loop= "false"> | Embed Tag | Identifies the address of the MIDI file "Voyager.mid" and embeds it with an associated graphic 140 pixels wide and 16 pixels high and passes information (controls="standard" autostart="true" loop="false") to the midi player |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align="center" valign="middle"> | Table Data Tag | Introduces data in a cell, centers it, and aligns it in the middle vertically |
Theme from | Text | Displays the text shown |
<a href="http://www.startrek.com"> | Text | Displays the text shown |
<I> | Italics Tag | Displays the following text in italics |
Star Trek, Voyager | Text | Displays the text shown |
</I> | End Italics Tag | Terminates display in italics |
</A> | End Anchor Tag | Terminates a Link |
by | Text | Displays the text shown |
<a href="http://us.imdb.com/Name? Goldsmith,+Jerry"> | Link Tag | Introduces a link to the address shown |
Jerry Goldsmith | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
On my honor I will do my best to do my duty to God and my country, | Text | Displays the text shown |
<br> | Line Break Tag | Terminates a line of text |
to obey the law; to help other people at all times; and to keep myself | Text | Displays the text shown |
<br> | Line Break Tag | Terminates a line of text |
physically strong, mentally awake, and morally straight. - | Text | Displays the text shown |
<I> | Italics Tag | Displays the following text in italics |
The Scout Oath | Text | Displays the text shown |
</I> | End Italics Tag | Terminates display in italics |
</b> | End Bold Tag | Terminates display in bold type |
<br> | Line Break Tag | Terminates a line of text |
<H1> | Headline Tag | Introduces a #1 headline |
<font color="#FFFF00"> | Font Tag | Changes the color of the following font to #FFFF00, which is gold |
God bless George Bush and the United States of America! | Text | Displays the text shown |
</font> | End Font Tag | Terminates specification of the gold font |
<p> | Paragraph Tag | Marks a paragraph transition |
Welcome to my home page. | Text | Displays the text shown as a #1 headline |
</H1> | End Headline Tag | Terminates a #1 headline |
<p> | Paragraph Tag | Marks a paragraph transition |
<table width=100%> | Table Tag | Introduces a table with a width of 100% of the screen size. This table has no border. It merely serves to align the pictures of the moon and Mars and my card. |
<TR> | Table Row Tag | Introduces a table row |
<td align=center valign=bottom> | Table Data Tag | Introduces centered data in a table cell, aligned at the bottom |
<table> | Table Tag | Introduces a table to keep the picture of the moon and the caption, "Let's go back to the Moon" centered in the leftmost cell of the larger table. |
<TR> | Table Row Tag | Introduces a table row |
<td> | Table Data Tag | Introduces data in a table cell |
<img src="http://lindorfer.us/ wizard/Graphics/Moon.gif" height=144 width=144> | Image Tag | Identifies the address of the image "Moon.gif" and displays it with a height of 144 pixels and a width of 144 pixels |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
<TR> | Table Row Tag | Introduces a table row |
<td align=center> | Table Data Tag | Introduces centered data in a table cell, |
<font color="#FF0000"> | Font Tag | Changes the color of the following font to #FF0000, which is red |
Let's go back to the | Text | Displays the text shown |
<br> | Line Break Tag | Terminates a line of text |
moon... | Text | Displays the text shown in the font format specified |
</font> | End Font Tag | Terminates specification of the red font |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align=center valign=middle> | Table Data Tag | Introduces centered data in a table cell, vertically aligned in the middle |
<TABLE BORDER=5> | Table Tag | Introduces a table with a 5 pixel border. This table is used as a picture frame for the card. |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<IMG SRC="http://lindorfer.us/ wizard/Graphics/CallingCard.gif" ALT="My card" HEIGHT=144 WIDTH=252> | Image Tag | Identifies the address of the image "CallingCard.gif" and displays it with a height of 144 pixels and a width of 252 pixels |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
<br> | Line Break Tag | Terminates a line of text |
<CENTER> | Center Tag | Centers the following text |
<b> | Bold Tag | Displays the following text in bold type |
My Card | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
</CENTER> | End Center Tag | Ends centering the text |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align=center valign=bottom> | Table Data Tag | Introduces centered data in a table cell, aligned on the bottom of the cell |
<table> | Table Tag | Introduces a table containing the image of Mars and the captain "On our way to Mars!" that keeps the caption centered under the image. |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<img src="http://lindorfer.us/ wizard/Graphics/Mars.gif" height=144 width=144> | Image Tag | Identifies the address of the image "Mars.gif" and displays it with a height of 144 pixels and a width of 144 pixels |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
<TR> | Table Row Tag | Introduces a table row |
<td align=center> | Table Data Tag | Introduces centered data in a table cell |
<font color="#FF0000"> | Font Tag | Changes the color of the following font to #FF0000, which is red |
On our way to | Text | Displays the text shown |
<br> | Line Break Tag | Terminates a line of text |
<b> | Bold Tag | Displays the following text in bold type |
Mars! | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
</font> | End Font Tag | Terminates specification of the red font |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
<p> | Paragraph Tag | Marks a paragraph transition |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
CIVILIAN EXPERIENCE | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
Currently retired and living the life of an itinerant wizard. | Text | Displays the text shown |
<a href="http://lindorfer.us/ ~tinman"> | Link Tag | Introduces a link to the address shown |
Click here to read about my journey to Middle Earth. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
<LI> | List Item Tag | Identifies an item in a list |
7/00 - 5/02 - Instructor in computer science at | Text | Displays the text shown |
<a href="http://www.mgccc.cc.ms.us/"> | Link Tag | Introduces a link to the address shown |
Mississippi Gulf Coast Community College | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
, at the | Text | Displays the text shown |
<a href="http://www.mgccc.cc.ms.us/ perk.htm"> | Link Tag | Introduces a link to the address shown |
Perkinston, Mississippi, Campus | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Philosophy.html"> | Link Tag | Introduces a link to the address shown |
Click here for my educational philosophy | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
01/95 - 12/99 - Retired as Senior Engineer at | Text | Displays the text shown |
<a href="http://www.lmco.com/ michoud/"> | Link Tag | Introduces a link to the address shown |
Lockheed MartinMichoud Space Systems, | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
responsible for verification of laser, process and radiological safety at the | Text | Displays the text shown |
<a href="http://www.lmco.com/ michoud/maf_site.html"> | Link Tag | Introduces a link to the address shown |
NASAMichoud Assembly Facility | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
in | Text | Displays the text shown |
<a href="http://www.yatcom.com/ neworl/vno.html"> | Link Tag | Introduces a link to the address shown |
NewOrleans, Louisiana. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Designated instructor for radiological safety course required by | Text | Displays the text shown |
<a href="http://www.deq.state.la.us/ olae/irdd/regs.htm#partxv"> | Link Tag | Introduces a link to the address shown |
LAC33:XV | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
.575. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<LI> | List Item Tag | Identifies an item in a list |
01/93 - 09/94 - Senior Engineer at | Text | Displays the text shown |
<a href="http://www.ornl.gov/ mmes.html"> | Link Tag | Introduces a link to the address shown |
LockheedMartin Energy Systems | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
in | Text | Displays the text shown |
<a href="http://www.orcc.org"> | Link Tag | Introduces a link to the address shown |
Oak Ridge, Tennessee | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. (Active "L" Clearance) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Reviewed engineering transmittals for design, construction and modification of radiological facilities at the Oak Ridge K-25 Plant. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Advised and assisted Central Engineering and other agencies to assure adherence to safety requirements. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Developed and implemented oversight plans for all subcontractor work atthe K-25 Plant and surrounding leased facilities. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Developed statistical methods for demonstrating criticality safety of radiologicalfacilities. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Supervised other safety personnel in the performance of the above duties. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<LI> | List Item Tag | Identifies an item in a list |
09/78 - 12/92 - Senior Engineer for | Text | Displays the text shown |
<a href="http://www.lmco.com/ michoud/"> | Link Tag | Introduces a link to the address shown |
LockheedMartin Michoud Space Systems | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Performed and supervised safety analyses and studies for design, construction, modification and recertification of the Space Shuttle External Tank. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Developed computer-related technologies for automated safety analyses and hazard investigation. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Developed and implemented the PHAROS program for analyses of space hardware systems and the automated MORT program for accident investigation and analysis. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Participated in preparation of proposals for new initiatives and facilities operations at various NASA sites. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Directed safety program development and safety analyses of advanced programs studies including the Aft Cargo Carrier, | Text | Displays the text shown |
<a href="http://spaceflight.nasa.gov/ station/index.html"> | Link Tag | Introduces a link to the address shown |
International Space Station | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
, and Liquid Rocket Booster. | Text | Displays the text shown |
</UL> | End Unordered List Tag | Terminates an unordered list |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
MILITARY EXPERIENCE | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
- | Text | Displays the text shown |
<a href="http://www.army.mil/"> | Link Tag | Introduces a link to the address shown |
U.S. Army | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Officer, Active Duty (DOD TS Clearance) - 08/62 - 02/78 | Text | Displays the text shown |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
Assistant Chief, Maintenance Engineering Division, U.S. Army Aviation Systems Command, St. Louis, MO | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Executive Officer for Research, Development and Engineering, U.S. ArmyAviation Systems Command, St. Louis, MO | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Post Engineer, cities of Dalat and Pleiku, US Army Engineer District, | Text | Displays the text shown |
<a href="http://www.lonelyplanet.com. au/dest/sea/vietnam.htm"> | Link Tag | Introduces a link to the address shown |
Vietnam | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Executive Officer, 577th Engineer Battalion (Combat), Dalat, | Text | Displays the text shown |
<a href="http://www.lonelyplanet.com. au/dest/sea/vietnam.htm"> | Link Tag | Introduces a link to the address shown |
Vietnam | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Company Commander, 509th Engineer Company (Portable Bridge), | Text | Displays the text shown |
<a href="http://www.lonelyplanet.com. au/dest/sea/vietnam.htm"> | Link Tag | Introduces a link to the address shown |
Vietnam | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Adjutant, | Text | Displays the text shown |
<a href="http://www.riley.army.mil/ 937thgp/937thgp.html"> | Link Tag | Introduces a link to the address shown |
937thEngineer Group (Combat), | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Pleiku, | Text | Displays the text shown |
<a href="http://www.lonelyplanet.com. au/dest/sea/vietnam.htm"> | Link Tag | Introduces a link to the address shown |
Vietnam | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Headquarters Commandant, 815th Engineer Battalion, | Text | Displays the text shown |
<a href="http://www.belvoir.army.mil/"> | Link Tag | Introduces a link to the address shown |
FortBelvoir, VA | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
, and Pleiku, | Text | Displays the text shown |
<a href="http://www.lonelyplanet.com. au/dest/sea/vietnam.htm"> | Link Tag | Introduces a link to the address shown |
Vietnam | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Instructor, Combat Engineering and Float Bridge Construction, | Text | Displays the text shown |
<a href="http://www.wood.army.mil/ eschool/Sites.htm"> | Link Tag | Introduces a link to the address shown |
US Army Engineer School | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Instructor, Atomic Demolition Munitions, | Text | Displays the text shown |
<a href="http://www.wood.army.mil/ eschool/Sites.htm"> | Link Tag | Introduces a link to the address shown |
US Army Engineer School | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Platoon Leader, 600th Engineer Company (Field Maintenance), Sam Song Ni, | Text | Displays the text shown |
<a href="http://darkwing.uoregon.edu/ ~felsing/kstuff/kshelf.html"> | Link Tag | Introduces a link to the address shown |
Korea | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
</UL> | End Unordered List Tag | Terminates an unordered list |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
LICENSES & CERTIFICATES | Text | Displays the text shown (Note the use of & for an ampersand. |
</b> | End Bold Tag | Terminates display in bold type |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
Louisiana Certified Industrial Radiographer EXCD 3, #297 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://cob.jmu.edu/icpm/"> | Link Tag | Introduces a link to the address shown |
Certified Manager | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
#05690 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.magnet.state.ma. us/reg/boards/en/default.htm"> | Link Tag | Introduces a link to the address shown |
ProfessionalEngineer | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
(Safety) in Massachusetts #37623 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.bcsp.com"> | Link Tag | Introduces a link to the address shown |
Certified Safety Professional | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
#11243 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Private Pilot, Instrument Airplane #2194853 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
General Radiotelephone Operator w/Ship Radar Endorsement #PG-8-15172 | Text | Displays the text shown |
</UL> | End Unordered List Tag | Terminates an unordered list |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
EDUCATION | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.tulane.edu"> | Link Tag | Introduces a link to the address shown |
Tulane University, New Orleans, LA | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
August 1981-June 1983 - 15 hours toward Ph.D. in Computer Science | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.afit.af.mil"> | Link Tag | Introduces a link to the address shown |
U.S. Air Force Institute of Technology,Wright-Patterson AFB, Ohio | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
, M.S. in Aerospace Engineering, 1970 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.loyno.edu/"> | Link Tag | Introduces a link to the address shown |
Loyola University, New Orleans, LA, | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
B.S., Physics 1962 | Text | Displays the text shown |
</UL> | End Unordered List Tag | Terminates an unordered list |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
TRAINING | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.pstcc.cc.tn.us"> | Link Tag | Introduces a link to the address shown |
Pelissippi Community College | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
SmallBusiness Seminar 1994 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.osha.gov/"> | Link Tag | Introduces a link to the address shown |
OSHA | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Program Management workshop, 1994 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Hazardous Waste Operations and Emergency Response 1993 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
NASA | Text | Displays the text shown |
<a href="http://www.bcsp.com"> | Link Tag | Introduces a link to the address shown |
Certified Safety Professional | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Workshop1992 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.atsc.army.mil/ accp/aipd.htm"> | Link Tag | Introduces a link to the address shown |
ArmyInstitute for Professional Development, | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
U.S. Army Signal Officer AdvancedCourse, Nonresident, Newport News, VA 1984 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www-cgsc.army.mil/"> | Link Tag | Introduces a link to the address shown |
U.S. Army Command and GeneralStaff College, Nonresident/ Resident, Ft. Leavenworth, KS, | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
1977 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
U.S. Air Cmd and Staff College, Nonresident, Little Rock AFB, AR, 1976 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
U.S. Army Command Management School, Ft. Belvoir, VA 1966 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
U.S. Army Engineer Officer Career Course, Ft. Belvoir, VA 1966 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
U.S. Army Instructor Training Course, Ft. Belvoir, VA 1964 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
U.S. Army Atomic Demolition Officer Course, Ft. Belvoir, VA 1962 | Text | Displays the text shown |
</UL> | End Unordered List Tag | Terminates an unordered list |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
ACHIEVEMENTS | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
Received President's Award for development of statistical method for demonstrating criticality safety of radiological facilities at the U.S. Department ofEnergy Oak Ridge Sites. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Cited by NASA for participation in the Lightweight Tank development program and External Tank Recertification. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Tied for first place in the 1984 System Safety Society author competition for analysis of | Text | Displays the text shown |
<a href="http://spaceflight.nasa.gov/ station/index.html"> | Link Tag | Introduces a link to the address shown |
International Space Station | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Safe Haven requirements. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Received six Martin Marietta Manned Space Systems achievement awards. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Technical Author Award from Martin Marietta Manned Space Systems, 1984 | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Supervised the communications logistical planning for Army theater support of operations in Southwest Asia (Desert Shield and Desert Storm). | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Planned and coordinated the first nationwide teletype network for the | Text | Displays the text shown |
<a href="http://www.army.mil/usar/ structur.htm#poc5"> | Link Tag | Introduces a link to the address shown |
377thTheater Army Area Command. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://www.inxpress.net/ ~rokats/medals.html"> | Link Tag | Introduces a link to the address shown |
Army decorations | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
include Meritorious Service Medal (2), Bronze Star Medal (2), MeritoriousUnit Commendation (3) and campaign stars for 6 | Text | Displays the text shown |
<a href="http://www.lonelyplanet.com. au/dest/sea/vietnam.htm"> | Link Tag | Introduces a link to the address shown |
Vietnam | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
campaigns. | Text | Displays the text shown |
</UL> | End Unordered List Tag | Terminates an unordered list |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
ACTIVITIES | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
Retired Lieutenant Colonel, | Text | Displays the text shown |
<a href="http://www.army.mil/usar/ default.htm"> | Link Tag | Introduces a link to the address shown |
U.S.Army Reserve | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Former Instructor in System Safety (evening division), | Text | Displays the text shown |
<a href="http://www.dcc.edu/"> | Link Tag | Introduces a link to the address shown |
DelgadoCollege, New Orleans, LA | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Former Instructor in Computer Science (evening division), | Text | Displays the text shown |
<a href="http://www.tulane.edu"> | Link Tag | Introduces a link to the address shown |
Tulane University, New Orleans extension | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Expert Programmer on Macintosh series computers | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Familiar with Intel-based personal computers, Microsoft Windows, and Microsoft Office programs | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
Qualified Army parachutist | Text | Displays the text shown |
</UL> | End Unordered List Tag | Terminates an unordered list |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<b> | Bold Tag | Displays the following text in bold type |
PERSONAL STUFF | Text | Displays the text shown |
</b> | End Bold Tag | Terminates display in bold type |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
I live in the best place in the whole wide world! | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Neighborhood.html"> | Link Tag | Introduces a link to the address shown |
Take a look. | Text | Displays the text shown |
</A> | End Anchor Tag | Terminates a Link |
<a name="eHarmony"> | Name Tag | Identifies the place in the text with the name "eHarmony" |
<LI> | List Item Tag | Identifies an item in a list |
In his book | Text | Displays the text shown |
<a href="http://www.amazon.com/exec/ obidos/tg/detail/-/0785265392/qid= 1096858861/sr=1-1/ref=sr_1_1/ 102-0481645-8049721?v=glance &s=books"> | Link Tag | Introduces a link to the address shown |
"Date...or Soul Mate? How to Know if Someone is Worth Pursuing in Two Dates or Less," | Text | Displays the text shown |
</A> | End Anchor Tag | Terminates a Link |
Dr. Neil Clark Warren suggests a criteria of ten "must haves" and ten "can't stands" for evaluating compatibility with a prospective partner. I combined mine into a little song: | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Sucker.html"> | Link Tag | Introduces a link to the address shown |
"I'm a Sucker for a Girl Like That!" | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Then I took one of his "personality profile" tests. You know, the kind where they ask you a whole bunch of questions and then tell you about yourself. It sounded like Gilbert and Sullivan to me. It described me as a | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Profile.html"> | Link Tag | Introduces a link to the address shown |
retired intellectual. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
At the end of the test, there was a list of questions that other people who might be interested could ask to find out more | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/AboutMe.html"> | Link Tag | Introduces a link to the address shown |
about me | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. I figured I'd save them some time. What the heck? I'm a pretty open kind of guy. You can't bear witness under a bushel! | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
I'm an avid science fiction fan (as if you couldn't guess) I'm not necessarily a Star Trek fan, but that seems to be the baseline for sci-fi nowadays, and the graphics are readily available on the Internet. | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
My real interest in | Text | Displays the text shown |
<a href="http://www.theonering.net/"> | Link Tag | Introduces a link to the address shown |
The Lord of the Rings | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. | Text | Displays the text shown |
<a href="http://lindorfer.us/ ~tinman"> | Link Tag | Introduces a link to the address shown |
Click here to see my vacation pictures in Middle Earth | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Member, | Text | Displays the text shown |
<a href="http://planetary.org/"> | Link Tag | Introduces a link to the address shown |
The Planetary Society | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Member, | Text | Displays the text shown |
<a href="http://www.nss.org/"> | Link Tag | Introduces a link to the address shown |
National Space Society | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Member, | Text | Displays the text shown |
<a href="http://www.hwg.org/"> | Link Tag | Introduces a link to the address shown |
The HTML Writers' Guild | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
Active member of St. Paul's Catholic Church, Pass Christian, MS (Actually, I combine this with the science fiction thing at the | Text | Displays the text shown |
<a href="http://www.coastcon.org/"> | Link Tag | Introduces a link to the address shown |
COASTCONs | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
in the alter ego of Chaplain (Captain) David Hardy, Imperial Space Naval Reserve, a character in | Text | Displays the text shown |
<a href="http://www.amazon.com/exec /obidos/ASIN/0671741926/002- 2569700-9603663"> | Link Tag | Introduces a link to the address shown |
"TheMote in God's Eye" | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
and | Text | Displays the text shown |
<a href="http://www.amazon.com/ exec/obidos/ASIN/0671795740/r/002- 2569700-9603663"> | Link Tag | Introduces a link to the address shown |
"TheGripping Hand" | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
by Larry Niven and Jerry Pournelle). You might find my sermons and lectures interesting. | Text | Displays the text shown |
<UL> | Unordered List Tag | Introduces an unordered list |
<a name="sermons"> | Name Tag | Identifies the place in the text with the name "sermons" |
<LI> | List Item Tag | Identifies an item in a list |
Sermons (They share a secret. Can you find it?) | Text | Displays the text shown |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Why.html"> | Link Tag | Introduces a link to the address shown |
Why? | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Comments on Columbine ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/john/john13.htm#v34"> | Link Tag | Introduces a link to the address shown |
John 13:34 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Sex.html"> | Link Tag | Introduces a link to the address shown |
Sex | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
It's how we resemble God ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/mark/mark10.htm#v7"> | Link Tag | Introduces a link to the address shown |
Mark 10:7-12 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Share.html"> | Link Tag | Introduces a link to the address shown |
It wasn't fair! | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
The Prodigal Son ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/luke/luke15.htm#v11"> | Link Tag | Introduces a link to the address shown |
Luke 15:11-32 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Slavery.html"> | Link Tag | Introduces a link to the address shown |
Slavery | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
The True Evils of Slavery ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/matthew/matthew18.htm#v23"> | Link Tag | Introduces a link to the address shown |
Matthew 18:23-34 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/GoodNeighbor.html"> | Link Tag | Introduces a link to the address shown |
Because He Was a Good Neighbor | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
: The Good Samaritan ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/luke/luke10.htm#v25"> | Link Tag | Introduces a link to the address shown |
Luke 10:25-37 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Mary.html"> | Link Tag | Introduces a link to the address shown |
Holy Mary, Mother of God | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
: The Catholic Concept of Mary ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/luke/luke1.htm#v26"> | Link Tag | Introduces a link to the address shown |
Luke 1:26-55 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/AllDogs.html"> | Link Tag | Introduces a link to the address shown |
A Loving Benediction | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Why All Dogs Don't Go to Heaven ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/1corinthians/1corinthians15. htm#v13"> | Link Tag | Introduces a link to the address shown |
I Cor 15:13-20 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Captain.html"> | Link Tag | Introduces a link to the address shown |
The Captain is God | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
: The Meaning of Divine Providence ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/matthew/matthew8.htm#v5"> | Link Tag | Introduces a link to the address shown |
Matthew 8:5-10 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
, | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/luke/luke7.htm#v1"> | Link Tag | Introduces a link to the address shown |
Luke 7:1-9 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Meaning.html"> | Link Tag | Introduces a link to the address shown |
I once met a man who came back from the dead! | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
The Meaning of Adversity ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/luke/luke16.htm#v19"> | Link Tag | Introduces a link to the address shown |
Luke 16:19-31 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Grapes.html"> | Link Tag | Introduces a link to the address shown |
As every successful wine maker knows | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
: The Parable of the Workers in the Vinyard ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/matthew/matthew20.htm#v1"> | Link Tag | Introduces a link to the address shown |
Matthew 20:1-16 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Christmas.html"> | Link Tag | Introduces a link to the address shown |
Not Even The Greatest Angel, In All His Glory, Can Say That! | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Comments on the Christmas Story ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/john/john1.htm#v1"> | Link Tag | Introduces a link to the address shown |
John 1:1-14 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/CaesarTax.html"> | Link Tag | Introduces a link to the address shown |
The Wisdom To Know The Difference | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
: The difference between Caesar and God ( | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/luke/luke20.htm#v20"> | Link Tag | Introduces a link to the address shown |
Luke 20:20-26 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
, | Text | Displays the text shown |
<a href="http://www.nccbuscc.org/nab/ bible/mark/mark12.htm#v13"> | Link Tag | Introduces a link to the address shown |
Mark 12:13-17 | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
) | Text | Displays the text shown |
</UL> | End Unordered List Tag | Terminates an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
Lectures | Text | Displays the text shown |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/BabyFae.html"> | Link Tag | Introduces a link to the address shown |
Baby Fae | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Aliens.html"> | Link Tag | Introduces a link to the address shown |
Aliens on Earth | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/GodCR.html"> | Link Tag | Introduces a link to the address shown |
God and the Cockroach | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Timothy.html"> | Link Tag | Introduces a link to the address shown |
The Letters of Timothy | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Bible.html"> | Link Tag | Introduces a link to the address shown |
Comments on The Bible | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Monument.html"> | Link Tag | Introduces a link to the address shown |
A Monument to Silliness | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Abortion.html"> | Link Tag | Introduces a link to the address shown |
An Alternative to Abortion | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/War.html"> | Link Tag | Introduces a link to the address shown |
The Moral Implications of War | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Elephant.html"> | Link Tag | Introduces a link to the address shown |
The Elephant in the War Room | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Stewardship.html"> | Link Tag | Introduces a link to the address shown |
Some Comments on Stewardship | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Twins.html"> | Link Tag | Introduces a link to the address shown |
Judges Rule Siamese Twins Can Be Separated | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Objectors.html"> | Link Tag | Introduces a link to the address shown |
The Catholic Church Teaching on Conscientious Objectors | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/SchoolPrayer.html"> | Link Tag | Introduces a link to the address shown |
The Argument Against Compulsory Prayer in Public Schools | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/JCBJ.html"> | Link Tag | Introduces a link to the address shown |
The Long Beach School Board policy on substance abuse testing | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
</UL> | End Unordered List Tag | Terminates an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
...And other ramblings: | Text | Displays the text shown |
<UL> | Unordered List Tag | Introduces an unordered list |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/BigLies.html"> | Link Tag | Introduces a link to the address shown |
Big Lies | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/AboutMe.html"> | Link Tag | Introduces a link to the address shown |
About Me | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Epitaph.html"> | Link Tag | Introduces a link to the address shown |
Memories of My Dad | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Dentist.html"> | Link Tag | Introduces a link to the address shown |
A Poem for My Dentist | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Hopper.html"> | Link Tag | Introduces a link to the address shown |
A Tribute to Grace Hopper | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/PVM.html"> | Link Tag | Introduces a link to the address shown |
Professionals vs. Managers | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Sorry.html"> | Link Tag | Introduces a link to the address shown |
Send a sorry Democrat to Canada | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Sucker.html"> | Link Tag | Introduces a link to the address shown |
I'm a Sucker for a Girl Like That! | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Stamp.html"> | Link Tag | Introduces a link to the address shown |
How Does One "Boycott" a Stamp? | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/BallsforBush.html"> | Link Tag | Introduces a link to the address shown |
Balls for Bush (A reply to the RNC) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/HazardP.html"> | Link Tag | Introduces a link to the address shown |
Hazard Prioritization (VERY stuffy!) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/CCCIntro.html"> | Link Tag | Introduces a link to the address shown |
The Catechism of the Catholic Church | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/HTML_Resources.html"> | Link Tag | Introduces a link to the address shown |
An Outdated List of HTML Resources | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Neighborhood.html"> | Link Tag | Introduces a link to the address shown |
My Neighborhood and Welcome To It! | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Parent.html"> | Link Tag | Introduces a link to the address shown |
The Very Model Parent (Namely, me!) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/SGLI.html"> | Link Tag | Introduces a link to the address shown |
A Letter About Military Death Benefits | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Profile.html"> | Link Tag | Introduces a link to the address shown |
My "Profile" | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Text | Displays the text shown | |
<a href="http://lindorfer.us/ wizard/Profileunderlined.html"> | Link Tag | Introduces a link to the address shown |
(Click here to verify the meter.) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Draft.html"> | Link Tag | Introduces a link to the address shown |
The Y2K Problem and How to Avoid the Draft | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Richer.html"> | Link Tag | Introduces a link to the address shown |
How to Become Richer than Bill Gates (It isn't easy!) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Tanker.html"> | Link Tag | Introduces a link to the address shown |
"The Tanker" (a tribute to Gordon Duncan, USANG) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/PartC.html"> | Link Tag | Introduces a link to the address shown |
Part Criticality By the Numbers (VERY, VERY stuffy!) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Refutation.html"> | Link Tag | Introduces a link to the address shown |
A Refutation of "The Five Deadly Myths About the Military" | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Philosophy.html"> | Link Tag | Introduces a link to the address shown |
My Educational Philosophy (which is why I'm not a teacher.) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/MORT.html"> | Link Tag | Introduces a link to the address shown |
The Management Oversight and Risk Tree, MORT (Also VERY stuffy) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/SwiftBoat.html"> | Link Tag | Introduces a link to the address shown |
Swift Boat Veterans for Truth, Tuesday, May 18, 2004 (used with permission) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Crew.html"> | Link Tag | Introduces a link to the address shown |
"Unloading Crew" (or, "Why I didn't take up science fiction writing as a career") | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Grandma.html"> | Link Tag | Introduces a link to the address shown |
Grandma and the Space Program (or, "The (Apparent) Conflict Between Religion and Science") | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<LI> | List Item Tag | Identifies an item in a list |
<a href="http://lindorfer.us/ wizard/Running.html"> | Link Tag | Introduces a link to the address shown |
A comparison of the Concept of Running Totals and Weighted Totals for Detection of Trends as Applied to Statistical Data (Even the title puts people to sleep!) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
</UL> | End Unordered List Tag | Terminates an unordered list |
</UL> | End Unordered List Tag | Terminates an unordered list |
</UL> | End Unordered List Tag | Terminates an unordered list |
<p> | Paragraph Tag | Marks a paragraph transition |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
I am | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Parent.html"> | Link Tag | Introduces a link to the address shown |
The Very Model of Enlightened Single Parenthood | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. These are my children. Click on the little picture to see the full-sized one. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<CENTER> | Center Tag | Centers the following text |
<table> | Table Tag | Introduces the invisible table containing the pictures of the children, which serves to align and center the images. |
<TR> | Table Row Tag | Introduces a table row |
<td align=center valign=middle> | Table Data Tag | Introduces centered data vertically aligned in the middle of a table cell |
<TABLE BORDER=5> | Table Tag | Introduces a table with a 5 pixel border. This table is used as a picture frame for the graphic "MelanieL.jpg." |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<a href="http://lindorfer.us/ wizard/Graphics/Melanie.jpg"> | Link Tag | Identifies the address of the graphic "Melanie.jpg" |
<img src="http://lindorfer.us/ wizard/Graphics/MelanieL.jpg" ALT="Melanie" height=180 width=135> | Image Tag | Identifies the address of the image "MelanieL.jpg" and displays it with a height of 180 pixels and a width of 135 pixels and the alternate text "Melanie" |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align=center valign=middle> | Table Data Tag | Introduces centered data vertically aligned in the middle of a table cell |
<TABLE BORDER=5> | Table Tag | Introduces a table with a 5 pixel border. This table is used as a picture frame for the graphic "StefanieL.gif." |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<a href="http://lindorfer.us/ wizard/Graphics/Stefanie.jpg"> | Link Tag | Identifies the address of the graphic "Stefanie.jpg" |
<img src="http://lindorfer.us/ wizard/Graphics/StefanieL.jpg" ALT="Stefanie" height=180 width=135> | Image Tag | Identifies the address of the image "StefanieL.jpg" and displays it with a height of 180 pixels and a width of 135 pixels and the alternate text "Stefanie" |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align=center valign=middle> | Table Data Tag | Introduces centered data vertically aligned in the middle of a table cell |
<TABLE BORDER=5> | Table Tag | Introduces a table with a 5 pixel border. This table is used as a picture frame for the graphic "DavidL.gif." |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<a href="http://lindorfer.us/ wizard/Graphics/David.jpg"> | Link Tag | Identifies the address of the graphic "David.jpg" |
<img src="http://lindorfer.us/ wizard/Graphics/DavidL.jpg" ALT="David" height=180 width=135> | Image Tag | Identifies the address of the image "DavidL.jpg" and displays it with a height of 180 pixels and a width of 135 pixels and the alternate text "David" |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align=center valign=middle> | Table Data Tag | Introduces centered data vertically aligned in the middle of a table cell |
<TABLE BORDER=5> | Table Tag | Introduces a table with a 5 pixel border. This table is used as a picture frame for the graphic "AaronL." |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<a href="http://lindorfer.us/ wizard/Graphics/Aaron.jpg"> | Link Tag | Identifies the address of the graphic "Aaron.jpg" |
<img src="http://lindorfer.us/ wizard/Graphics/AaronL.jpg" ALT="Aaron" height=180 width=135> | Image Tag | Identifies the address of the image "AaronL.jpg" and displays it with a height of 180 pixels and a width of 135 pixels and the alternate text "Aaron" |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
<TR> | Table Row Tag | Introduces a table row |
<td align=center valign=middle> | Table Data Tag | Introduces centered data vertically aligned in the middle of a table cell |
Melanie has finished her enlistment in the US Air Force and is now living in Texas. | Text | Displays the text shown |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align=center valign=middle> | Table Data Tag | Introduces centered data vertically aligned in the middle of a table cell |
Stefanie works at a beauty salon in Knoxville, Tennessee | Text | Displays the text shown |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align=center valign=middle> | Table Data Tag | Introduces centered data vertically aligned in the middle of a table cell |
David works for Bayview Furniture Company in Long Beach. | Text | Displays the text shown |
</TD> | Table Data End Tag | Terminates data in a table cell |
<td align=center valign=middle> | Table Data Tag | Introduces centered data vertically aligned in the middle of a table cell |
Aaron is an assistant deli manager in Knoxville, Tennessee. | Text | Displays the text shown |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
<p> | Paragraph Tag | Marks a paragraph transition |
<TABLE BORDER=5 WIDTH=232> | Table Tag | Introduces a table with a border 5 pixels wide and a width of 232 pixels. This table is used as a picture frame for the graphic "SherlyL.jpg " |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<a href="http://lindorfer.us/ wizard/Graphics/Sherly.jpg"> | Link Tag | Identifies the address of the graphic "Sherly.jpg" |
<IMG SRC="http://lindorfer.us/ wizard/Graphics/SherlyL.jpg" ALT="Sherly Medina" HEIGHT=328 WIDTH=232> | Image Tag | Identifies the address of the image "SherlyL.jpg" and displays it with a height of 328 pixels and a width of 232 pixels and the alternate text "Sherly Medina" |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
<TR> | Table Row Tag | Introduces a table row |
<td align="center"> | Table Data Tag | Introduces centered data in a cell |
For 30 years I have sponsored a child through the | Text | Displays the text shown |
<a href="http://www.christianchildrens fund.com/"> | Link Tag | Introduces a link to the address shown |
Christian Children's Fund | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. This is my sixth one. Her name is Sherly Medina. Isn't she cute? | Text | Displays the text shown |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
A couple of my buddies in the space business sent me the link to this photo. The image is a panoramic view of the world from the new space station, taken on a perfect night with no obscuring atmospheric conditions. It is a composite night photo with the lights clearly indicating the populated areas. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
You can download the actual picture, which is almost 3 feet wide, by clicking on the photo below, and then scroll east-west and north- south. Note that Canada's population is almost exclusively along the U.S. border. Moving east to Europe, there is a high population concentration along the Mediterranean Coast. It's easy to spot London, Paris, Stockholm and Vienna. Check out the development of Israel compared to the rest of the Arab countries. Note the Nile River and the rest of the "Dark Continent." After the Nile, the lights don't come on again until Johannesburg. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
Note the Australian Outback and the Trans-Siberian Rail Route. Moving east, the most striking observation is the difference between North and South Korea. Compare both to the density of Japan. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
It takes a little while to down load but it is worth it.... | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<CENTER> | Center Tag | Centers the following text |
<TABLE BORDER=5> | Table Tag | Introduces a table with a 5 pixel border. This table is used as a picture frame for the graphic "WorldL.jpg." |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<a href="http://antwrp.gsfc.nasa.gov/ apod/image/0011/earthlights_dmsp _big.jpg"> | Link Tag | Introduces a link to the address of the graphic "earthlights_dmsp_big.jpg" |
<IMG SRC="http://lindorfer.us/ wizard/Graphics/WorldL.jpg" ALT="Where the people are" HEIGHT=228 WIDTH=555> | Image Tag | Identifies the address of the image "WorldL.jpg" and displays it with a height of 228 pixels and a width of 555 pixels and the alternate text "Where the people are" |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
<p> | Paragraph Tag | Marks a paragraph transition |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
<p> | Paragraph Tag | Marks a paragraph transition |
This is our beach at | Text | Displays the text shown |
<a href="http://long-beach.ms.us/"> | Link Tag | Introduces a link to the address shown |
Long Beach, Mississippi | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. Isn't it beautiful? | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<TABLE BORDER=5> | Table Tag | Introduces a table with a 5 pixel border. This table is used as a picture frame for the graphic "LongBeach.jpg." |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<a href="http://long-beach.ms.us/"> | Link Tag | Introduces a link to the address shown |
<img src="http://lindorfer.us/ wizard/Graphics/LongBeach.jpg" ALT="Long Beach" height=414 width=521> | Image Tag | Identifies the address of the image "LongBeach.jpg" and displays it with a height of 414 pixels and a width of 521 pixels and the alternate text "Long Beach" |
</A> | End Anchor Tag | Terminates a Link |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
Talking about beautiful, a friend from Russia sent me a link to some absolutely gorgeous Russian landscapes. They are | Text | Displays the text shown |
<I> | Italics Tag | Displays the following text in italics |
BREATHTAKING! | Text | Displays the text shown |
</I> | End Italics Tag | Terminates display in italics |
To see them, go to | Text | Displays the text shown |
<a href="http://papers.same.ru/nature/ 0001.shtml"> | Link Tag | Introduces a link to the address shown |
http://papers.same.ru/nature/ 0001.shtml | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
for the first one, and then click on the little numbers on the bottom to see the others. Click on the little pictures to see full sized ones. You can use them as wallpaper on your computer. How spacious is their country! | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<CENTER> | Center Tag | Centers the following text |
<Img src="http://lindorfer.us/ wizard/Graphics/PanelLights342x14. gif" ALT="Horizontal rule with flashing lights" HEIGHT=14 WIDTH=554> | Image Tag | Identifies the address of the image "PanelLights342x14.gif" and displays it with a height of 14 pixels and a width of 554 pixels |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
Does your second grader know more about HTML than you do? Would you like to be able to make your own HTML documents? Start with "Second Grade HTML" by clicking | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/HTML/HTML.html"> | Link Tag | Introduces a link to the address shown |
here. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
What happens when stupid people with authority over children get scared? Read the | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/JCBJ.html"> | Link Tag | Introduces a link to the address shown |
Long Beach School Board policy on substance abuse testing | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
My father died recently. He didn't want any memorial service, but I thought | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Epitaph.html"> | Link Tag | Introduces a link to the address shown |
these words | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
were appropriate. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<a href="http://lindorfer.us/ wizard/Safetyfield.html"> | Link Tag | Introduces a link to the address shown |
Click here to go to Rodney Safetyfield's Home Page | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
If you are in the safety business here's your chance to get some respect. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<a href="http://lindorfer.us/ wizard/Lasers/index.html"> | Link Tag | Introduces a link to the address shown |
Here is the text of my Internet presentation on laser safety | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. It is the text for a one-day class I taught at Lockheed Martin. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
The Management Oversight and Risk Tree (MORT) method of analysis has gone out of favor somewhat since the Department of Energy reduced funding for it. | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/MORT.html"> | Link Tag | Introduces a link to the address shown |
Here is a text of a presentation I gave at the System Safety Society Convention in 1997 on the use of MORT to analyze a potentially unsafe condition | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. You can look at the chart without the text by | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/LindorfersMort.html"> | Link Tag | Introduces a link to the address shown |
clicking here | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. (Be careful, the chart is 674,742 bytes! It may take a long time to download) | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
NASA's method of communication of hazard information between the rocket scientists and their managers isn't very good, as indicated by the two space shuttle disasters. | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/HazardP.html"> | Link Tag | Introduces a link to the address shown |
Here is my attempt to fix it. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Their definition and determination of part criticality isn't much better. | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/PartC.html"> | Link Tag | Introduces a link to the address shown |
Here are my thoughts on the subject. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Finally, | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/PVM.html"> | Link Tag | Introduces a link to the address shown |
this is what the real problem is. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
Text | Displays the text shown | |
<a href="mailto:wizard@datasync. com"> | Mailto Link | Invokes the e-mail client |
Feel free to comment. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
Would you like to know what the Catholic Church believes? It's all in the Catechism of the Catholic Church. Click | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/CCCIntro.html"> | Link Tag | Introduces a link to the address shown |
here | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
for the introduction and then, if you're still interested, download the file from there. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<a href="http://lindorfer.us/ wizard/Objectors.html"> | Link Tag | Introduces a link to the address shown |
Click here to find out what the teaching of the Catholic Church really is about conscientious objectors | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
and | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Elephant.html"> | Link Tag | Introduces a link to the address shown |
here about the Elephant in the war room. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
There is so much talk about Islam these days, and most of it comes from people who have no idea what they're talking about. If you are interested in what the Koran (Al Quran) says about things, you can read an | Text | Displays the text shown |
<a href="http://www.submission.org/ Q-T.html"> | Link Tag | Introduces a link to the address shown |
English translation by Dr. Rashad Khalifa, Ph.D., here. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
And for those who want to read the | Text | Displays the text shown |
<a href="http://www.hti.umich.edu/r/ rsv/"> | Link Tag | Introduces a link to the address shown |
Revised Standard Version of the King James Bible (RSV) | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
, you can find a good source | Text | Displays the text shown |
<a href="http://www.hti.umich.edu/r/ rsv/"> | Link Tag | Introduces a link to the address shown |
here. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
Have you ever had questions about the meaning of adversity? | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Meaning.html"> | Link Tag | Introduces a link to the address shown |
The answer is here! | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
(Please read it before you form a judgment.) | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
Why did Eric Harris and Dylan Klebold walk into their high school and kill 13 fellow students and a teacher? | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Why.html"> | Link Tag | Introduces a link to the address shown |
This is why | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
It has always intrigued me that the Christmas season is so much more popular than any other religious holiday. | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Christmas.html"> | Link Tag | Introduces a link to the address shown |
This is what I think the reason is. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
Here are my thoughts on | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/SchoolPrayer.html"> | Link Tag | Introduces a link to the address shown |
prayer in public schools. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
What are the moral principles involved when two conjoined twins share one heart? | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Twins.html"> | Link Tag | Introduces a link to the address shown |
Click here to find out | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<a href="http://lindorfer.us/ wizard/GodCR.html"> | Link Tag | Introduces a link to the address shown |
Here is a little story about God and the Cockroach. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
Finally, I owe a great debt to my mentor, | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Earl.html"> | Link Tag | Introduces a link to the address shown |
Mr. Earl McNail | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
, for whom I was privileged to work for about ten years. | Text | Displays the text shown |
<a href="http://lindorfer.us/ wizard/Earl.html"> | Link Tag | Introduces a link to the address shown |
This | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
is my attempt to repay it. | Text | Displays the text shown |
<p> | Paragraph Tag | Marks a paragraph transition |
<CENTER> | Center Tag | Centers the following text |
<a href="mailto:wizard@datasync. com"> | Mailto Link | Invokes the e-mail client |
Click here to send me E-mail. | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<p> | Paragraph Tag | Marks a paragraph transition |
<table> | Table Tag | Introduces a Table |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<IMG SRC="http://lindorfer.us/ wizard/Graphics/bluespin.gif" ALT="Made with Macintosh" HEIGHT=56 WIDTH=96> | Image Tag | Identifies the address of the image "bluespin.gif" and displays it with a height of 56 pixels and a width of 96 pixels and the alternate text "Made with Macintosh" |
</TD> | Table Data End Tag | Terminates data in a table cell |
<TD VALIGN=CENTER> | Table Data Tag | Introduces centered data in a table cell |
I am a member of | Text | Displays the text shown |
</TD> | Table Data End Tag | Terminates data in a table cell |
<TD> | Table Data Tag | Introduces data in a table cell |
<IMG SRC="http://lindorfer.us/ wizard/Graphics/lo-025.gif" ALT= "HWG Logo" HEIGHT=90 WIDTH=64> | Image Tag | Identifies the address of the image "lo-025.gif" and displays it with a height of 90 pixels and a width of 64 pixels and the alternate text "HWG Logo" |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
<p> | Paragraph Tag | Marks a paragraph transition |
<FONT SIZE=-1> | Font Tag | Reduces the size of the following font by 1 point |
Star Trek graphics on this page were taken from | Text | Displays the text shown |
<a href="http://www.staga.force9.co.uk/ staga/index.html"> | Link Tag | Introduces a link to the address shown |
the Star Trek Animated GIF Archive | Text | Displays the text shown as a link |
</A> | End Anchor Tag | Terminates a Link |
<br> | Line Break Tag | Terminates a line of text |
Star Trek and associated names are © & ® by Paramount Pictures. This site is maintained as a hobby and no infringement is intended. | Text | Displays the text shown in the font format specified |
</font> | End Font Tag | Terminates specification of -1 font soze |
<p> | Paragraph Tag | Marks a paragraph transition |
<table width=554> | Table Tag | Introduces a table of a width of 554 pixels |
<TR> | Table Row Tag | Introduces a table row |
<TD> | Table Data Tag | Introduces data in a table cell |
<table border=1 bgcolor=black> | Table Tag | Introduces a table with a border 1 pixel wide and a background color of black to separate the website update information below from the rest of the display by enclosing it in a black rectangle. |
<TR> | Table Row Tag | Introduces a table row |
<td align=center> | Table Data Tag | Introduces centered data in a table cell |
<font color="#FF0000" size=-1> | Font Tag | Specifies a font of color #FF0000, which is red, and reduces the size of the following font by 1 point |
This website was updated 4/10/05 by John H. Lindorfer. It has not been endorsed by Bill Clinton, Jimmy Carter, Michael Moore, Al Gore, Ed Bradley, any relative of Michael Jackson, or a single one of those sorry Democrats. | Text | Displays the text shown in the font format specified |
</font> | End Font Tag | Terminates specification of the red, -1 size font |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</TD> | Table Data End Tag | Terminates data in a table cell |
<TD> | Table Data Tag | Introduces data in a table cell |
<IMG SRC="http://lindorfer.us/ wizard/Graphics/Madhack.gif" ALT="Me at work"HEIGHT=48 WIDTH=48> | Image Tag | Identifies the address of the image "Madhack.gif" and displays it with a height of 48 pixels and a width of 48 pixels and the alternate text "Me at work" |
</TD> | Table Data End Tag | Terminates data in a table cell |
</TR> | Table Row End Tag | Terminates a table row |
</TABLE> | End Table Tag | Terminates a table |
</CENTER> | End Center Tag | Ends centering the text |
<p> | Paragraph Tag | Marks a paragraph transition |
<script language="JavaScript"> | Script Tag | Identifies the following text as a JavaScript applet (We didn't study these.) |
<!--var wait = 50 //sleep time until next letter (milliseconds) var message = new Array() | JavaScript Program Element | Displays the message at the bottom of the document window |
message[0] = " " | Text | The message shown (all spaces) |
message[1] = "There is nothing wrong with this Country that can't be cured by being nicer to each other, getting more exercise, and refusing to give people things they don't earn. " | The message shown | Displays the message at the bottom of the document window |
message[2] = "Nobody is entitled to my hard-earned tax money because he abuses himself, doesn't want to work, or because something bad happened to him. " | The message shown | Displays the message at the bottom of the document window |
message[3] = "The only people who need to be worried about the economy are those without the skills or initiative to get a worthwhile job. " | The message shown | Displays the message at the bottom of the document window |
message[4] = "The government already provides free education. Anyone who doesn't take advantage of that deserves to be poor. " | The message shown | Displays the message at the bottom of the document window |
message[5] = "Everything a citizen needs to know should be taught in high school. Education beyond that should be restricted to only those who earn it. " | The message shown | Displays the message at the bottom of the document window |
message[6] = "People who want health insurance or accident insurance or life insurance or unemployment insurance or any other kind of insurance should buy some. " | The message shown | Displays the message at the bottom of the document window |
message[7] = "Health care benefits should not be used to prolong the process of dying. " | The message shown | Displays the message at the bottom of the document window |
message[8] = "The problem with social security is that people who are planning to draw out of it are not having enough children who will be paying into it. " | The message shown | Displays the message at the bottom of the document window |
message[9] = "An expanded space program will create new technologies and jobs for people here on earth so they won't be poor in the first place. " | The message shown | Displays the message at the bottom of the document window |
message[10] = "People responsible for governing us deserve our respect and support, even if we disagree with them. " | The message shown | Displays the message at the bottom of the document window |
message[11] = "Some minds are already wasted. " | The message shown | Displays the message at the bottom of the document window |
message[12] = "We don't need to change the Constitution; we need legislators and judges who understand it better the way it is. " | The message shown | Displays the message at the bottom of the document window |
message[13] = "Real Americans aren't afraid of terrorists. What we are afraid of is being treated by our government as if we were some. " | The message shown | Displays the message at the bottom of the document window |
message[14] = "Irresponsible drivers have killed 40 times as many people as terrorists since 9/11/1, and Tom Ridge isn't doing anything about them. " | The message shown | Displays the message at the bottom of the document window |
message[15] = "The most dangerous terrorists are the ones who can get into our computers. " | The message shown | Displays the message at the bottom of the document window |
message[16] = "Laws limit freedom. We need fewer of them, not more. " | The message shown | Displays the message at the bottom of the document window |
message[17] = "The best way to deal with terrorists is to kill them. Not jail them, not try them, not bring them to justice, just kill them. " | The message shown | Displays the message at the bottom of the document window |
message[18] = "Every citizen has an obligation to vote, pay taxes and serve society. Those who don't want to participate are free to leave. " | The message shown | Displays the message at the bottom of the document window |
message[19] = "People who resist arrest by uniformed police deserve to be beat up. " | The message shown | Displays the message at the bottom of the document window |
message[20] = "Dangerous criminals are no less dangerous because they are or used to be disadvantaged children. " | The message shown | Displays the message at the bottom of the document window |
message[21] = "One becomes a criminal by violating a law, not because someone else claims he did something she didn't like. " | The message shown | Displays the message at the bottom of the document window |
message[22] = "People who claim Iraq didn't have weapons of mass destruction need to explain all those dead Kurds. " | The message shown | Displays the message at the bottom of the document window |
message[23] = "The last war run by a Democrat killed over 58,000 Americans, 1,500,000 Vietnamese, cost 150,000,000,000 dollars and accomplished nothing. " | The message shown | Displays the message at the bottom of the document window |
message[24] = "Government employees, elected and otherwise, are there to serve the public, not to be provided with a job. " | The message shown | Displays the message at the bottom of the document window |
message[25] = "Presidential candidates ought to have some qualifications for the job. The ability to criticize is not one of them. " | The message shown | Displays the message at the bottom of the document window |
message[26] = "Because a candidate is endorsed by losers, especially Jane Fonda, is not a reason to vote for him. " | The message shown | Displays the message at the bottom of the document window |
message[27] = "Laws that declare that men and women are equal are just as valid as laws that declare that pi equals 4. " | The message shown | Displays the message at the bottom of the document window |
message[28] = "Judges are paid to determine what the law says, not what they think God would like it to say. " | The message shown | Displays the message at the bottom of the document window |
message[29] = "Gay marriage is the lifetime union between one gay man and one gay woman. " | The message shown | Displays the message at the bottom of the document window |
message[30] = "A former Navy officer whose own shipmates despise him does not deserve to be Commander in Chief. " | The message shown | Displays the message at the bottom of the document window |
message[31] = "The most dangerous Iraqi weapon of mass destruction was Saddam Hussein, and we definitely found him. " | The message shown | Displays the message at the bottom of the document window |
message[32] = "Poverty is capitalism's method of telling someone his neighbors don't believe he's doing his share. " | The message shown | Displays the message at the bottom of the document window |
message[33] = "Only cowards give up their Constitutional right to privacy in exchange for the illusion of security. " | The message shown | Displays the message at the bottom of the document window |
message[34] = "Anybody who appeals to terrorists' mercy is not in contact with reality. " | The message shown | Displays the message at the bottom of the document window |
message[35] = "There are very few cases in equity where one is entitled to more money than he could ever expect to earn himself. " | The message shown | Displays the message at the bottom of the document window |
message[36] = "There is a very good reason why nature has made same sex couples incapable of breeding. " | The message shown | Displays the message at the bottom of the document window |
message[37] = "When American workers become as concerned about DOING a job as they are about HAVING one, the jobs will return. " | The message shown | Displays the message at the bottom of the document window |
message[38] = "Any law that discriminates on the basis of one's color, intentionally or otherwise, is inherently racist. " | The message shown | Displays the message at the bottom of the document window |
message[39] = "The only interest the US has in Haiti is keeping the Haitians out of the US. " | The message shown | Displays the message at the bottom of the document window |
message[40] = "It is morally wrong to make people to serve as spare parts for other people. " | The message shown | Displays the message at the bottom of the document window |
message[41] = "One does not become politically astute because her son or husband died, regardless of the cause. " | The message shown | Displays the message at the bottom of the document window |
message[42] = "Governments have the power to tax so they can provide government services for taxpayers. " | The message shown | Displays the message at the bottom of the document window |
message[43] = "Taking money from one person to give to another is called 'stealing,' regardless of who does it. " | The message shown | Displays the message at the bottom of the document window |
message[44] = "Society derives no benefit at all from keeping unproductive people healthy, or even alive. " | The message shown | Displays the message at the bottom of the document window |
message[45] = "Stupid people shouldn't vote; nobody benefits from having a stupid government. " | The message shown | Displays the message at the bottom of the document window |
message[46] = "A man who disagrees with the teachings of his own church is probably a hypocrite in other things, too. " | The message shown | Displays the message at the bottom of the document window |
message[47] = "Modern arguments for medical uses of embryos are the same ones that Nazis used for medical uses of Jews. " | The message shown | Displays the message at the bottom of the document window |
message[48] = "People who aren't on the registration rolls or don't know where to vote should stay home. " | The message shown | Displays the message at the bottom of the document window |
message[49] = "The best way to keep from being killed in a rowdy crowd is not to be there. " | The message shown | Displays the message at the bottom of the document window |
message[50] = "Mutiny is mutiny, regardless of what someone's momma thinks. " | The message shown | Displays the message at the bottom of the document window |
var msgs = 50 //Number of message (0 is first) var temp = " " //Do not modify these... (recommended) var curmsg = 0 var a = 0 var counter = 0 function typew() { a = a + 1 check() window.status = message[curmsg] .substring(0, a) if(a == message[curmsg].length + 5) { curmsg = curmsg + 1 a = 0 } if(curmsg > msgs) { curmsg = 0 } counter = setTimeout("typew()", wait) } function check() { if(a <= message[curmsg].length) { if(message[curmsg].substring(a, a + 1) == " ") { a = a + 1 check() } } } typew(); // --> | Text (The JavaScript Program) | Executes display of the messages sequentially at the bottom of the window |
</script> | End Script Tag | Terminates the JavaScript program |
</BODY> | End Body Tag | Terminates the body of the HTML document |
</HTML> | End HTML Tag | Terminates the HTML document |
In Sixth Grade HTML we will talk a little bit about document development.