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

Guest Book

 

 

 

Dear friends:              To  receive regular updates and news on the website, Please enter your email address to subscribe  to VB mailing list:
 

 

cover
 
Number of Visitors:
 Contact us
Home
Last Update:  2008-11-16  
TABLE OF CONTENTS

 Introduction
  Building a Visual Basic Application
  Working With Controls                                             
  Writing the Codes  
  Lesson 5: Managing Visual Basic Data
  Lesson 6: Working With Variables
  Lesson 7: Controlling Program Flow
  Lesson 8: More on Program Control
  Lesson 9: Looping
  Lesson 10: Introduction to VB Function Part1
  Lesson 11: Introduction to VB Function Part2
  Lesson 12: Creating VB Function For MS Excel
  Lesson 13: Arrays              
  Lesson 14: Working With Files
  Lesson 15: Creating Multimedia Applications: Part I
  Lesson 16: Creating Multimedia Applications: Part II
  Lesson 17: Creating Multimedia Applications: Part III
  Lesson 18: Creating Multimedia Applications: Part IV
  Lesson 19: Creating database applications in VB-Part I
  Lesson 20: Creating database applications in VB-Part II
  Lesson 21: Creating VB database applications using ADO control
  Lesson 22: Creating an Advanced VB database application
  Lesson 23: Animation- Part I
  Lesson 24: Animation-Part II

  Lesson 25: Animation- Part III

 

 
 

 

                                    


 


 
 
Privacy Information

 


 


 

 

 

<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
A B
C D
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"

 

 

 

 


 

CONTENTS
CHAPTER 1
CHAPTER 2
CHAPTER 3
CHAPTER 4
CHAPTER 5
CHAPTER 6
CHAPTER 7
CHAPTER 8
CHAPTER 9
CHAPTER 10
CHAPTER 11
CHAPTER 12
CHAPTER 13
CHAPTER 14
CHAPTER 15
CHAPTER 16
CHAPTER 17
CHAPTER 18
CHAPTER 19
CHAPTER 20