Saturday, August 23, 2014

Exercise 1 – Basic HTML Tables

Exercise 1 – Basic HTML Tables

  1. Open Notepad and create a Web page called “BasicTables.htm” and save it in your HTML folder.  In the <TITLE> tag add “Basic HTML tables”.  Be sure to include all the proper opening and closing HTML tags that a Web page requires.
  2. Inside the opening and closing <BODY> tags insert the following code:

<TABLE>
<TR>
<TH> Course Number </TH>
<TH> Course Description</TH>
</TR>
<TR>
<TD> HTML 101 </TD>
<TD> Basic HTML Web page creation</TD>
</TR>
</TABLE>

Make sure you save your file periodically as you put in your code to make sure all your code is saved.  You will also need to make sure the file has been saved before displaying it in a browser.

  1. Open the file in Internet Explorer.  (Do not close Internet Explorer after you view the file.)  The file should look like this:

  1. If the file does not display correctly, go back to your Notepad file and check that all code has been properly typed.  Make any corrections you find.  After making corrections, resave the file and go back and refresh your browser by either clicking on the “refresh” icon or going to View – Refresh in the menu bar.  Keep repeating this process until your page displays properly in Internet explorer. 


0 comments:

Post a Comment