HTML and Basic Web Page Construction

Hyper Text Markup Language


Special Tags


HTML Document

<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE>My Page </TITLE>
</HEAD>
<BODY>
<H1>Big Bold Heading Line</H1>
</BODY>
</HTML>


Commenting your HTML Code

<!--
   this is a comment and will not appear to the reader
-->


Physical Formatting Tags


Logical FormattingTags


Lists

Lists within lists

 <UL>
<LI> A few New England states:  </LI>
<UL>
<LI> Vermont</LI>
<LI> New Hampshire </LI>
</UL>
<LI> One Midwestern state: </LI>
<UL>
<LI> Michigan </LI>
</UL>
</UL>

Hyperlinks


Uniform Resource Locators


Images



Video
<VIDEO width="300" height = "200" controls="controls">
<Source src ="myvideo.mp4" type = "video/mp4" />
Your broswer does not support video
</VIDEO>



Audio
<Audio  controls="controls">
<Source src ="mysong.mp3" type = "audio/mp3" />
Your broswer does not support audi
</Audio>



Tables in HTML

<table  style="width: 300px; text-align: left;"  border="1">
<caption>Monthly Savings Table</Caption>
  <thead>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  </thead>
  <tfoot>
  <tr>
    <td>Sum</td>
    <td>$180</td>
  </tr>
  </tfoot>
  <tbody>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
  </tbody>
</table>
Monthly Savings Table
Month Savings
Sum $180
January $100
February $80



Pages within Pages using IFRAME

<IFRAME SRC= url NAME =  frame_name  WIDTH = width HEIGHT = height > text to display if browser does not support iframes </iframe>
<iframe src="http://www.fgcu.edu/" height="300" width="400"> you need to update your browser</iframe>






Online information References Tutorials