Lee-1

by David Kyle

HTML

<!--Comments are a way of keeping organized, without displaying anything on the screen-->
<!-- HTML is "HyperText Markup Language" -->
<!-- Technically HTML isn't a "programming" language, it's a markup language.  What's the difference?  For now, not important. -->
<!-- HTML is comprised of "Elements".  An HTML element has three syntax elements: An opening "tag", content, and a "closing" tag. -->
<!-- All HTML elements require an open and a close.  Some HTML elements allow their content to be HTML elements, more on that later. -->
<b>Bold</b>
<br /><!-- <br /> means line break.  It forces a new line to display-->
<i>Italic</i>
<br />
<u>Underline</u>
<br />
<h1>
Heading 1
</h1>
<!-- Note there is no <br /> needed here but the next h2 still shows up on a new line.  The browser knows that <h#> tags are "block-level".  In other words, they shouldn't be formatted in-line with other content, just like headings in a document.-->
<h2>
Heading 2
</h2>
<h3>
Heading 3
</h3>
<h4>
Heading 4
</h4>
<h5>
Heading 5
</h5>
<h6>
Heading 6
</h6>
<address>
  1234 Main Street
</address>
<p>
  This is a paragraph of text.  It is designed to display multiple, related sentences in a grouping.  Very similar to standard writing for print.
</p>
<p>
Paragraphs are "block" level, like headings.  The browser knows to display them on their own line and to create whitespace between them, but will wrap text that is too wide for the screen of your browser to display.
</p>