Captain: Sharmin
092006
Class Notes
Bu4035
Today's Topic:
-Web Assignment on page 695 do it as progressively type it as is and then change it to suite tutorial system. Post all your work to geocities
-do it in the notepad
-10 most frequent used tag of HTML will make up 90% of every web page for that reason you should concentrate
-every step do it separately
-We are going to build Tutorial system
Ex: PG 695 Instead of select fruit select different topic in your program
Simple Web page created with HTML

<HTML>
<TITLE>Dr.Ebrahimi's Webpage</TITLE>
<BODY BGCOLOR="ff0056">
<FONT SIZE="+3">Welcome to Dr.Ebrahimi's Webpage</FONT><BR><BR>
<CENTER>
<A HREF="http://www.drebrahimi.com">Clickhere</A><BR><BR>
what is your favorite fruits?
<SELECT NAME="Fruit">
<OPTION>Apple
<OPTION>Banana
<option>CHERRY<HTML>
<TITLE>Dr.Ebrahimi's Webpage</TITLE>
<BODY BGCOLOR="ff0056">
<FONT SIZE="+3">Welcome to Dr.Ebrahimi's Webpage</FONT><BR><BR>
<CENTER>
<A HREF="http://www.drebrahimi.com">Clickhere</A><BR><BR>
what is your favorite fruits?
<SELECT NAME="Fruit">
<OPTION>Apple
<OPTION>Banana
<option>CHERRY
<option>WATERMELON
</SELECT><BR>
</HTML>
<FROM METHOD="POST" ACTION="mailto:ebrahimi@juno.com">
Name:<INPUT TYPE="text" NAME="name" SIZE=""><BR>
E-mail:<TEXTAREA NAME="email"ROWS=5COLS=35></TEXTAREA>
<INPUT TYPE="submit" VALUE="send"></FORM>
</HTML>
<option>WATERMELON
</SELECT><BR>
</HTML>
<FROM METHOD="POST" ACTION="mailto:ebrahimi@juno.com">
Name:<INPUT TYPE="text" NAME="name" SIZE=""><BR>
E-mail:<TEXTAREA NAME="email"ROWS=5COLS=35></TEXTAREA>
<INPUT TYPE="submit" VALUE="send"></FORM>
</HTML>
<A NAME=LIST></A>
<LI>C++</LI>
<LI>JAVA</LI>
<LI>PERL</LI>
<LI>JAVASCRIPT</LI>
<LI>HTML</LI>
</BODY>
</HTML>
You are building a tutorial and it is for C++
introduce it, state the mission, you don't have to reinvent the wheel (please nothing illegal)
If this was your site to build, how would you do that?

Ebrahimi, C++ tutorial
Explain what you are trying to do.
Change everything around, you don't have advertisement.
|
C++ Tutorial |
|
TABLE OF CONTENTS
Introduction
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="keywords" content="desktop publishing, photography, video, painting,
drawing, sculpture, creative, southern folk art, mac adams, art, gallery, Amelie
A. Wallace gallery, mathematics, natural science, behavioral sciences, business,
teacher education, humanities, Clarence Mitchell Papers">
<meta name="description" content="SUNY College at Old Westbury">
<meta name="language" content="en-US">
<meta name="robots" content="ALL">
<meta name="rating" content="GENERAL">
<meta name="distribution" content="GLOBAL">
<meta name="language" content="en-US">
<meta name="copyright" content="2004 - SUNY College of Old Westbury">
<meta name="author" content="Patricia Lind">
http://www.w3.org/TR/REC-CSS2/tables.html
Here is a simple three-row, three-column table described in HTML 4.0:
<TABLE> <CAPTION>This is a simple 3x3 table</CAPTION> <TR id="row1"> <TH>Header 1 <TD>Cell 1 <TD>Cell 2 <TR id="row2"> <TH>Header 2 <TD>Cell 3 <TD>Cell 4 <TR id="row3"> <TH>Header 3 <TD>Cell 5 <TD>Cell 6 </TABLE>
http://wp.netscape.com/assist/net_sites/table_sample.html
A TABLE WITH A BORDER OF 10
| Item 1 | Item 2 |
| Item 3 | Item 4 |
<TABLE BORDER=10> <TR> <TD>Item 1</TD> <TD> Item 2</TD> </TR> <TR> <TD>Item 3</TD> <TD>Item 4</TD> </TR> </TABLE>
NESTED TABLES: TABLE ABCD IS INSIDE TABLE 123456
| 1 | 2 | 3
|
||||
| 4 | 5 | 6 |
<TABLE BORDER> <TR> <!-- ROW 1, TABLE 1 --> <TD>1</TD> <TD>2</TD> <TD>3 <TABLE BORDER> <TR> <!-- ROW 1, TABLE 2 --> <TD>A</TD> <TD>B</TD> </TR> <TR> <!-- ROW 2, TABLE 2 --> <TD>C</TD> <TD>D</TD> </TR> </TABLE> </TD> </TR> <TR> <!-- ROW 2, TABLE 1 --> <TD>4</TD> <TD>5</TD> <TD>6</TD> </TR> </TABLE>
Know what you want to build, look at other sites for examples.
But don't copy/paste everything, anything you copy change anything that you do copy/paste
<pre></pre>
Means pre-format as is. (keep it as is)
This site needs a mission statement. (simple mission statement for learning) ex. "No child left behind"


|