Web Design (HTML Basics)
Procedure to open / view / modify / save HTML code
Lesson 1
Purpose: students will be able to create folders, create the title, heading, and a body for a web page using HTML coding, and save a web page.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY> <H3>WELCOME to My Web Page</H3> </BODY> </HTML>
Lesson 2
Purpose: students will be able to create a table using HTML coding.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY> <H3>WELCOME to My Web Page</H3> <TABLE WIDTH="75%" BORDER="1"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>Grade</TD> <TD>12 plus</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>Gemini</TD> </TR> </TABLE> </BODY> </HTML>
Lesson 3
Purpose: students will be able to create two additional rows using HTML coding.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY> <H3>Welcome to My Web Page</H3> <TABLE WIDTH="75%" BORDER="1"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE> </BODY> </HTML>
Lesson 4
Purpose: students will be able to insert an image using HTML coding.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY> <H3>Welcome to my Web Page</H3> <DIV ALIGN="CENTER"> <IMG SRC="IMAGES/ANIMAL.JPG" WIDTH="256" HEIGHT="172"> <TABLE WIDTH="75%" BORDER="1"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE> </DIV> </BODY> </HTML>
Lesson 5
Purpose: students will be able to create text hyperlinks, table cell spacing and cell padding using HTML.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY> <H3>I Am An Animal!</H3> <DIV ALIGN="CENTER"> <IMG SRC="IMAGES/ANIMAL.JPG" WIDTH="256" HEIGHT="172"> <TABLE WIDTH="75%" BORDER="1"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE> <TABLE WIDTH="75%" BORDER="1" CELLPADDING="1" CELLSPACING="1"> <TR> <TD><A HREF="IT10DST01.HTM">01</A></TD> <TD><A HREF="IT10DST02.HTM">02</A></TD> <TD><A HREF="IT10DST03.HTM">03</A></TD> <TD><A HREF="IT10DST04.HTM">04</A></TD> <TD><A HREF="IT10DST05.HTM">05</A></TD> <TD><A HREF="IT10DST06.HTM">06</A></TD> <TD><A HREF="IT10DST07.HTM">07</A></TD> <TD><A HREF="IT10DST08.HTM">08</A></TD> <TD><A HREF="IT10DST09.HTM">09</A></TD> <TD><A HREF="IT10DST10.HTM">10</A></TD> </TR> <TR> <TD><A HREF="IT10DST11.HTM">11</A></TD> <TD><A HREF="IT10DST12.HTM">12</A></TD> <TD><A HREF="IT10DST13.HTM">13</A></TD> <TD><A HREF="IT10DST14.HTM">14</A></TD> <TD><A HREF="IT10DST15.HTM">15</A></TD> <TD><A HREF="IT10DST16.HTM">16</A></TD> <TD><A HREF="IT10DST17.HTM">17</A></TD> <TD><A HREF="IT10DST18.HTM">18</A></TD> <TD><A HREF="IT10DST19.HTM">19</A></TD> <TD><A HREF="IT10DST20.HTM">20</A></TD> </TR> <TR> <TD><A HREF="IT10DST21.HTM">21</A></TD> <TD><A HREF="IT10DST22.HTM">22</A></TD> <TD><A HREF="IT10DST23.HTM">23</A></TD> <TD><A HREF="IT10DST24.HTM">24</A></TD> <TD><A HREF="IT10DST25.HTM">25</A></TD> <TD><A HREF="IT10DST26.HTM">26</A></TD> <TD><A HREF="IT10DST27.HTM">27</A></TD> <TD><A HREF="IT10DST28.HTM">28</A></TD> <TD><A HREF="IT10DST29.HTM">29</A></TD> <TD><A HREF="IT10DST30.HTM">30</A></TD> </TR> </TABLE> </DIV> </BODY> </HTML>
Lesson 6
Purpose: students will be able to add body background color, text color, link color, activated link color (alink), and followed link color (vlink).
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY BGCOLOR="#FFFF00" TEXT="#000000" LINK="#000099" VLINK="#FF3300" ALINK="#FF0033"> <H3>I Am An Animal!</H3> <DIV ALIGN="CENTER"> <IMG SRC="IMAGES/ANIMAL.JPG" WIDTH="256" HEIGHT="172"> <TABLE WIDTH="75%" BORDER="1"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE> <TABLE WIDTH="75%" BORDER="1" CELLPADDING="1" CELLSPACING="1"> <TR> <TD><A HREF="IT10DST01.HTM">01</A></TD> <TD><A HREF="IT10DST02.HTM">02</A></TD> <TD><A HREF="IT10DST03.HTM">03</A></TD> <TD><A HREF="IT10DST04.HTM">04</A></TD> <TD><A HREF="IT10DST05.HTM">05</A></TD> <TD><A HREF="IT10DST06.HTM">06</A></TD> <TD><A HREF="IT10DST07.HTM">07</A></TD> <TD><A HREF="IT10DST08.HTM">08</A></TD> <TD><A HREF="IT10DST09.HTM">09</A></TD> <TD><A HREF="IT10DST10.HTM">10</A></TD> </TR> <TR> <TD><A HREF="IT10DST11.HTM">11</A></TD> <TD><A HREF="IT10DST12.HTM">12</A></TD> <TD><A HREF="IT10DST13.HTM">13</A></TD> <TD><A HREF="IT10DST14.HTM">14</A></TD> <TD><A HREF="IT10DST15.HTM">15</A></TD> <TD><A HREF="IT10DDST16.HTM">16</A></TD> <TD><A HREF="IT10DST17.HTM">17</A></TD> <TD><A HREF="IT10DST18.HTM">18</A></TD> <TD><A HREF="IT10DST19.HTM">19</A></TD> <TD><A HREF="IT10DST20.HTM">20</A></TD> </TR> <TR> <TD><A HREF="IT10DST21.HTM">21</A></TD> <TD><A HREF="IT10DST22.HTM">22</A></TD> <TD><A HREF="IT10DST23.HTM">23</A></TD> <TD><A HREF="IT10DST24.HTM">24</A></TD> <TD><A HREF="IT10DST25.HTM">25</A></TD> <TD><A HREF="IT10DST26.HTM">26</A></TD> <TD><A HREF="IT10DST27.HTM">27</A></TD> <TD><A HREF="IT10DST28.HTM">28</A></TD> <TD><A HREF="IT10DST29.HTM">29</A></TD> <TD><A HREF="IT10DST30.HTM">30</A></TD> </TR> </TABLE> </DIV> </BODY> </HTML>
Lesson 7
Purpose: students will be able to add table background color, table border color, and cell color.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY BGCOLOR="#FFFF00" TEXT="#000000" LINK="#000099" VLINK="#FF3300" ALINK="#FF0033"> <H3>I Am An Animal!</H3> <DIV ALIGN="CENTER"> <IMG SRC="IMAGES/ANIMAL.JPG" WIDTH="256" HEIGHT="172"> <TABLE WIDTH="75%" BORDER="1"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE> <!--use the table bgcolor or td bgcolor, do not use both codes in the same table.--> <TABLE WIDTH="75%" TABLE BGCOLOR="#7070CC" TABLE BORDER COLOR="#007030" BORDER="1" CELLPADDING="1" CELLSPACING="1"> <TR> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST01.HTM">01</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST02.HTM">02</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST03.HTM">03</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST04.HTM">04</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST05.HTM">05</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST06.HTM">06</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST07.HTM">07</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST08.HTM">08</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST09.HTM">09</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST10.HTM">10</A></TD> </TR> <TR> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST11.HTM">11</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST12.HTM">12</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST13.HTM">13</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST14.HTM">14</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST15.HTM">15</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST16.HTM">16</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST17.HTM">17</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST18.HTM">18</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST19.HTM">19</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST20.HTM">20</A></TD> </TR> <TR> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST21.HTM">21</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST22.HTM">22</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST23.HTM">23</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST24.HTM">24</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST25.HTM">25</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST26.HTM">26</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST27.HTM">27</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST28.HTM">28</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST29.HTM">29</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST30.HTM">30</A></TD> </TR> </TABLE> </DIV> </BODY> </HTML>
Lesson 8
Purpose: students will be able to add a horizontal break, breaks, space, bold font, font color, font size, font type, copyright logo, and rowspan.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY BGCOLOR="#FFFF00" TEXT="#000000" LINK="#000099" VLINK="#FF3300" ALINK="#FF0033"> <DIV ALIGN="CENTER"> <IMG SRC="IMAGES/ANIMAL.JPG" WIDTH="256" HEIGHT="172"> <H3>I Am An Animal!</H3> <HR> <BR> <BR> <TABLE WIDTH="75%" BORDER="1"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE <BR> <TABLE WIDTH="75%" TABLE BORDER COLOR="#007030" BORDER="1" CELLPADDING="1" CELLSPACING="1"> <TR> <TD ROWSPAN=5>&NBSP;</TD> </TR> <TR> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST01.HTM">01</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST02.HTM">02</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST03.HTM">03</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST04.HTM">04</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST05.HTM">05</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST06.HTM">06</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST07.HTM">07</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST08.HTM">08</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST09.HTM">09</A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST10.HTM">10</A></TD> </TR> <TR> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST11.HTM">11</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST12.HTM">12</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST13.HTM">13</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST14.HTM">14</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST15.HTM">15</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST16.HTM">16</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST17.HTM">17</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST18.HTM">18</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST19.HTM">19</A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST20.HTM">20</A></TD> </TR> <TR> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST21.HTM">21</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST22.HTM">22</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST23.HTM">23</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST24.HTM">24</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST25.HTM">25</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST26.HTM">26</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST27.HTM">27</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST28.HTM">28</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST29.HTM">29</A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST30.HTM">30</A></TD> </TR> </TABLE> <P> <B> <FONT COLOR="FF0000" SIZE="2" FACE="ARIAL"> Copyright©2001(Kenneth Kim)All Rights Reserved. </B> </FONT> </P> </DIV> </BODY> </HTML>
Lesson 9
Purpose: students will be able to create image hyperlinks, center image hyperlinks, change border size, and add alternate text.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY BGCOLOR="#FFFF00" TEXT="#000000" LINK="#000099" VLINK="#FF3300" ALINK="#FF0033"> <DIV ALIGN="CENTER"> <IMG SRC="IMAGES/ANIMAL.JPG" WIDTH="256" HEIGHT="172"> <H3>I Am An Animal!</H3> <HR> <BR> <BR> <TABLE WIDTH="75%" BORDER="0"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE> <BR> <TABLE WIDTH="75%" BORDER="0" CELLPADDING="1" CELLSPACING="1"> <TR> <TD ROWSPAN=5><CENTER><A HREF="INDEX.HTM"><IMG SRC="IMAGES/SPARTANS.GIF" WIDTH="75" HEIGHT="75" BORDER="0" ALT="MAIN INDEX"> </A></CENTER></TD> </TR> <TR> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST01.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST02.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST03.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST04.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST05.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST06.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST07.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST08.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST09.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST10.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> <TR> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST11.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST12.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST13.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST14.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST15.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST16.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST17.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST18.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST19.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST20.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> <TR> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST21.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST22.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST23.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST24.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST25.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST26.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST27.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST28.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST29.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST30.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> </TABLE> <P> <B> <FONT COLOR="FF0000" SIZE="2" FACE="ARIAL"> Copyright©2001(Kenneth Kim)All Rights Reserved. </B> </FONT> </P> </DIV> </BODY> </HTML>
*For those seats that are unoccupied, put down this HTML code.*
<TD><A HREF="sorry.htm"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="nobody sits here"></center></A></TD>
Lesson 10
Purpose: students will be able to create a table, change font color, font size, font type, add text, and align text.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY BGCOLOR="#FFFF00" TEXT="#000000" LINK="#000099" VLINK="#FF3300" ALINK="#FF0033"> <DIV ALIGN="CENTER"> <IMG SRC="IMAGES/ANIMAL.JPG" WIDTH="256" HEIGHT="172"> <H3>I Am An Animal!</H3> <HR> <BR> <BR> <TABLE WIDTH="75%" BORDER="0"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE> <BR> <TABLE WIDTH="75%" BORDER="0" CELLPADDING="1" CELLSPACING="1"> <TR> <TD ROWSPAN=5><A HREF="INDEX.HTM"><IMG SRC="IMAGES/SPARTANS.GIF" WIDTH="75" HEIGHT="75" BORDER="0" ALT="MAIN INDEX"> </A><B><CENTER>MAIN INDEX</CENTER></B></TD> </TR> <TR> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST01.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST02.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST03.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST04.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST05.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST06.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST07.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST08.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST09.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST10.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> <TR> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST11.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST12.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST13.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST14.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST15.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST16.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST17.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST18.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST19.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST20.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> <TR> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST21.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST22.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST23.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST24.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST25.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST26.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST27.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST28.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST29.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST30.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> </TABLE> <TABLE WIDTH="75%" BORDER="0" CELLPADDING="1" CELLSPACING="1"> <TR> <TD><FONT COLOR="#FF0000" SIZE="2" FACE="ARIAL"><LEFT>CLICK IMAGE FOR THE MAIN INDEX</LEFT></FONT></TD> <TD><FONT COLOR="#FF0000" SIZE="2" FACE="ARIAL"><LEFT>CLICK IMAGES FOR THE STUDENT WEB PAGES</LEFT></FONT></TD> </TR> </TABLE> <P> <B> <FONT COLOR="FF0000" SIZE="2" FACE="ARIAL"> Copyright©2001(Kenneth Kim)All Rights Reserved. </B> </FONT> </P> </DIV> </BODY> </HTML>
Lesson 11
Purpose: students will be able to rename files, add tile backgrounds, borders and insert into a web page using HTML.
<HTML> <HEAD> <TITLE> My Page </TITLE> </HEAD> <BODY BACKGROUND="images/scallop.gif" TEXT="#000000" LINK="#000099" VLINK="#FF3300" ALINK="#FF0033"> <DIV ALIGN="CENTER"> <IMG SRC="IMAGES/CLASS.JPG" WIDTH="256" HEIGHT="172"> <H3>OUR INFORMATION TECHNOLOGY CLASS!</H3> <HR> <BR> <BR> <TABLE WIDTH="75%" BORDER="0"> <TR> <TD>NAME</TD> <TD>KENNETH KIM</TD> </TR> <TR> <TD>GRADE</TD> <TD>12 PLUS</TD> </TR> <TR> <TD>MY ASTROLOGICAL SIGN</TD> <TD>GEMINI</TD> </TR> <TR> <TD>ANIMAL I RESEMBLE MOST</TD> <TD>MONKEY</TD> </TR> <TR> <TD>REASONS WHY I RESEMBLE A MONKEY</TD> <TD>I AM EASILY DISTRACTED AND CAN'T SIT STILL.</TD> </TR> </TABLE> <BR> <TABLE WIDTH="75%" BORDER="0" CELLPADDING="1" CELLSPACING="1"> <TR> <TD ROWSPAN=5><A HREF="INDEX.HTM"><IMG SRC="IMAGES/SPARTANS.GIF" WIDTH="75" HEIGHT="75" BORDER="0" ALT="MAIN INDEX"> </A><B><CENTER>MAIN INDEX</CENTER></B></TD> </TR> <TR> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST01.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST02.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST03.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST04.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST05.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST06.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST07.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST08.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST09.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#6E7B8B"><A HREF="IT10DST10.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> <TR> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST11.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST12.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST13.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST14.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST15.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST16.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST17.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST18.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST19.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#00B2EE"><A HREF="IT10DST20.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> <TR> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST21.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST22.HTM"> <center><img src="images/blackgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST23.HTM"> <center><img src="images/redboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST24.HTM"> <center><img src="images/redgirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST25.HTM"> <center><img src="images/brownboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST26.HTM"> <center><img src="images/browngirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST27.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST28.HTM"> <center><img src="images/whitegirl.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST29.HTM"> <center><img src="images/blackboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> <TD BGCOLOR="#8A2BE2"><A HREF="IT10DST30.HTM"> <center><img src="images/whiteboy.gif" width="25" height="25" border="0" alt="name of student"></center></A></TD> </TR> </TABLE> <TABLE WIDTH="75%" BORDER="0" CELLPADDING="1" CELLSPACING="1"> <TR> <TD><FONT COLOR="#FF0000" SIZE="2" FACE="ARIAL"><LEFT>CLICK IMAGE FOR THE MAIN INDEX</LEFT></FONT></TD> <TD><FONT COLOR="#FF0000" SIZE="2" FACE="ARIAL"><LEFT>CLICK IMAGES FOR THE STUDENT WEB PAGES</LEFT></FONT></TD> </TR> </TABLE> <P> <B> <FONT COLOR="FF0000" SIZE="2" FACE="ARIAL"> Copyright©2001(Kenneth Kim)All Rights Reserved. </B> </FONT> </P> </DIV> </BODY> </HTML>
Lesson 12
Purpose: students will be able to copy and paste a .htm document, add a marquee, an image, and an automatic refresh using HTML code..
<BODY BGCOLOR="#000000" TEXT="FFF000">
<P> </P>
<DIV ALIGN="CENTER">
<H2>SORRY, NOBODY
SITS HERE!</H2>
<P><B><FONT SIZE="5" COLOR="#FFFFFF"><MARQUEE
WIDTH="300" ALIGN="MIDDLE" HEIGHT="24">You
will be returned to the main page.</MARQUEE></FONT></B></P>
<HR color="#FFF000"
width="90%">
<BR>
<BR>
<H2 style="#FFF000">You will be turned back in</H2>
<P><img src="images/sorry.gif" border="0" alt="NOBODY SITS HERE!"></P>
<H2 style="#FFF000">seconds.</H2>
</DIV>
</BODY>
</HTML>
Lesson 13
Purpose: students will be able to write in all meta information and create an index page using a template.
<html>
<head>
<title>IT 10 D or F Main Page</title>
<meta name="description" content="The animals in Mr. Kim's Information Technology class."> <meta name="keywords" content="animals, astrological signs, school, students, info tech, information technology">
</head>
<body bgcolor="#FFFFFF">
<h1 align="center">Title</h1>
<hr>
<p> </p>
<div align="center">
<table width="65%" border="0" cellspacing="0"
cellpadding="0">
<tr>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
</tr>
<tr>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td colspan="8" rowspan="2"><center><img
src="images/class.jpg" width="300" height="200"></center></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
</tr>
<tr>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
</tr>
<tr>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
<td><img src="images/students image" width="100"
height="100" border="0" alt="name of student"></td>
</tr>
</table>
</div>
<p> </p>
<p align="right">Copyright©2001(your name)All Rights
Reserved.</p>
</body>
</html>
*Mr. Kim will choose best index page and upload it. You can find images, buttons, borders, and backgrounds at www.yahright.com*
Lesson 14
Purpose: students will be able to beta test the web site.
Lesson 15
Purpose: students will be able to upload their image and web page to the web site host (Yahoo Geocities) and test it.
*Mr. Kim will demonstrate how to list this site with the major search engines
(www.addme.com), how to check
the efficiency of the images and links on the web site (www.gifwizard.com),
and how to check who owns a certain domain name (www.register.com)*
*make sure to upload images into the images subdirectory and web pages to the
parent directory*
Lesson 16
Purpose: students will be complete a site map of www.geocities.com/sentinelspartans using Inspiration software.
Evaluation Criteria (Total Mark - 100)
Web Page Criteria (100 marks)
Graphic (Animal)- 10 marks text image looks good proportionally image relates to the text Tile / Border Graphic - 10 marks 8 KB or less fits proportionally in web page Table - 10 marks controls cells / colums / rowspan controls cell color controls border size image links included Hyperlinks - 20 marks use backwards and forward hyperlinks hyperlinks to correct web page Index Page - 20 marks layout informative artistic technical Site Mapping - 10 marks all pages included all links included appropriate graphics appropriate text / text color Others - 10 marks central theme opening page (index) draws visitor inside title heading horizontal break breaks copyright logo controls font type controls font size controls font colour controls font style grammar - no mistakes in spelling or punctuation Cooperation - 10 marks does class work not disruptive shows respect for teacher and students helps others when asked
Lesson 17
Purpose: students will be build a web site for a sports team or a school club at Sentinel High School or for an outside client in the community.
*This is a project based assignment. Each person will have a role and will know their responsibility. You will have ten classes (approximately 1 month) to finish this assignment. First you must set a timeline for when things should be done. Please submit one timeline and one proposal for the group to the teacher. You will interview your client on your own time. Starting every Monday, I will call you up and you will show me your journal and the work you did the previous week. This journal can be in point form. This will also be a part of your evaluation. Once the players web page is done, everyone must discuss how the overall web site will look like and what the responsiblity for each individual will be. Someone has to be a LEADER! When the index page is finished, beta test the site. Then create a site name at Yahoo Geocities and upload the cliparts, photos, and web pages. Test the site online and make changes. We will set a time and place to hold the unveiling of the web site and send out invitations. As the fee for our services, our clients will provide the food and drinks.
Evaluation Criteria (Total Mark - 200)
Web Page Criteria
Individual Mark (Total - 75 marks) Journal - 25 marks complete work on time according to the timeline all entries dated and all work completed noted Individual Web Page- 50 marks layout informative artistic technical(see criteria above) Group Mark (Total - 125 marks) Organization - 25 marks proposal sheet and timeline submitted to the teacher everyone knows their role and their responsibility everyone on task and working efficiently and cooperatively all deadlines met Index Web Page and other pages - 50 marks layout informative artistic technical(see criteria above) Site Map / Site Testing- 20 marks all pages included all links included appropriate graphics appropriate text / text color Web Site Unveiling Party Organization - 5 marks invitations made and sent out food and drinks organized reception area laid out Presentation - 15 marks Structure (Beginning, Middle, End) Voice Posture Presenting not Reading Flow / Pace Group Individual Assessment - 10 marks how much work done for the group how co-operative in group how much leadership demonstrated