Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation...

53
Introduction to Computer Application II

Transcript of Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation...

Page 1: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Introduction to Computer Application II

Page 2: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Today‘s Subject

• Power Point

»Practice

»Presentation

• Summary Internet Application

• HTML Program

»Practice

Page 3: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Can be embedded from anothersoftware application such as word,excell, access, picture, video, audioetc.

Can be convert to html file

InterestingPresentation

Goal

WHYAnimation

Power Point

Page 4: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Power PointCreate a new presentation

Learning one by one from Menu in Power Point

Learning some features from Power Point such as:

• Adding Picture

• Adding Word Art

Practice to make a presentation and present it in front of class

Page 5: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Internet & Multimedia Application:

Browsing

File Transfer

Remote Control Video Conferencing

Video player

Audio player Tools

Ads Banner

Etc.

Email

Webcam

Page 6: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

BROWSING

Netscape

Internet Explorer

MozaikPlug in

Page 7: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

REMOTECONTROL

WS FTP

Cute FTP

FTP

FILE TRANSFER

Telnet

Page 8: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

EMAIL

WEB BASED

NON WEB BASED

Netscape

EudoraPegasus

Microsoft Mail

Yahoo

Hotmail

gmx

Themailetc

Page 9: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

VIDEO CONFERENCING

Webcam Audio+

Webcam Audio+

NetMeeting

Paltalk

ICUII

A

B

Page 10: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

AUDIO PLAYER

Real Player

Xing MP3

VIDEO PLAYER

Quick Time

Media Player

Page 11: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

WEBCAM BROADCAST

STREAMING

PIC TO PIC

ChillcamWebcam

Webcam Camarades

WebcamNow

http://www.webcamworld.com

Page 12: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

HTML Program

Create a simple homepage to introduce your self with these features:

» A Simple HTML » Heading,Font style, Font size» Color background » Order list and Unorder list» Hyperlink for email or for another homepage

site » Adding Picture/ Image» Adding Animation» Adding Table

Page 13: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

A Simple HTML Program

<html>

<head>

<meta name="Author" content=“hustina">

</head>

<body >

In this site you can see my resume

</body>

</html>

Page 14: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Heading

<H1 > Heading level 1 </H1><H2> Heading level 2 < /H2><H3> Heading level 3 < /H3><H4> Heading level 4 < /H4><H5> Heading level 5 < /H5><H6> Heading level 6 < /H6>

Page 15: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Heading

<html>

<head>

<meta name="Author" content="Hustina">

</head>

<H1 ALIGN=CENTER> MY HOME PAGE </H1>

<body text="#000000" bgcolor="#3366FF" link="#FFFFFF" vlink="#551A8B" alink="#FF0000">

In this site you can see my resume

</body>

</html>

Page 16: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 17: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Different font Style<B>……………..</B>

<I>……………...</I>

<U>…………….</U>

<sup>………….</sup>

<sub>………….</sub>

<PRE>…… …..</PRE>

<BLINK> ….... </BLINK>

Page 18: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

<html>

<head>

<meta name="Author" content="Hustina">

</head>

<H1 ALIGN=CENTER> <U> MY <SUB>FIRST</SUB> HOME <SUP>PAGE</SUB></U> </H1>

<body>

In this <B>site</B> you can see <I>my resume</I>

<PRE>

###########

# HUSTINA #

###########

</PRE>

</body>

</html>

Page 19: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 20: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

FONT SIZE<FONT SIZE = X COLOR = “Y” FACE = “Z” > .......

</FONT>

X : Font Size

Y : Type color

Z : Type face

LINE<HR SIZE = X WIDTH = Y ALIGN = Z |NOSHADE| >

X = Line widh

Y = Line Length

Z = left / center / right

NOSHADE

Page 21: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

<html><head><meta name="Author" content="Hustina"></head><H1 ALIGN=CENTER> <U> MY <SUB>FIRST</SUB> HOME <SUP>PAGE</SUB></U> </H1><body><FONT SIZE = 12 COLOR = "red" FACE = "ARIEAL" > In this site you can see my resume</FONT><HR SIZE = 2 WIDTH = 500 ALIGN = center><PRE>

############ HUSTINA ############

</PRE></body></html>

Page 22: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 23: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

With Background Color

<BODY ALINK=#rrggbb BACKGROUND=”URL” BGCOLOR=#rrggbb LINK=#rrggbb TEXT=#rrggbb VLINK=#rrggbb>

Example :

<BODY ALINK=#FF0000 BACKGROUND=”back.jpg” LINK=#0000FF VLINK=#00FF00 TEXT=#000000 BGCOLOR=#FF00FF>

ALINK=#FF0000 : Red

VLINK=#00FF00 : Green

TEXT=#000000 : Black

LINK=#0000FF : Blue

BGCOLOR=#FF00FF : Combine Red and Blue

BACKGROUND : URL

Page 24: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

With Background Color

<html><head> <meta name="Author" content=“Hustina"></head><body text="#000000" bgcolor="#3366FF"

link="#FFFFFF" vlink="#551A8B" alink="#FF0000">

In this site you can see my resume</body></html>

Page 25: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 26: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Order List<OL | TYPE = 1 / a / A / i / I | START = X | ><LI> ... item 1 ....<LI> ... item 2 ....<LI> ... item 3 ....

.

.

.</OL>NoteTYPE = Type OrderX = Initial Value

Page 27: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Order List<HTML><HTML><HEAD><TITLEL> Ordered List </TITLE></HEAD><BODY><p>Result survey for music Jazz categori</p><OL><LI> Four Play - Between The Sheets<LI> Al Jarreau - The Best Of Al Jarreau<LI> Russ Freeman & David Benoit - Benoit & Freeman Project</OL></BODY></HTML>

Page 28: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 29: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

UnOrder List<UL | TYPE = disc / circle / square | ><LI> ... item 1 ....<LI> ... item 2 ....<LI> ... item 3 ....

.

.</UL>

Note

TYPE = Type bullet

Page 30: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

UnOrder List<HTML><HEAD><TITLE> Unordered List </TITLE></HEAD><BODY><p>Type course </p><UL><LI> INTERNET<LI> LOTUS NOTES<LI> INFORMIX<LI> IBM AS/400</UL></BODY></HTML>

Page 31: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 32: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Link<A HREF = “URL” [ TARGET = “name frame” ] > ..... </A>

Example:

<A HREF = “mailto:[email protected]” > Send e-mail ke Webmaster Gunadarma </A>

<A HREF = “http://www.gunadarma.ac.id” > Universitas Gunadarma Homepage </A>

Page 33: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Link

<html><head> <meta name="Author" content=“hustina"></head><body text="#000000" bgcolor="#3366FF" link="#FFFFFF" vlink="#551A8B" alink="#FF0000"> In this site you can see my resume and in this <a href="http://www.kompas.com">site</a> you can read some news <br> You can drop your email to <P> <a href=“mailto:[email protected]">[email protected]</a></body></html>

Page 34: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 35: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Picture<IMG SRC=’URL” ALIGN=A ALT=”B” BORDER=C

HEIGHT/WIDTH=D HSPACE/VSPACE=E>

Note:

A = Alignment ( left, right, top, middle, bottom)

B = Alternatif text

C = border size

D = width and length image

E = space

Contoh :

<IMG SRC=”myface.jpg” align=right alt=”photoku” border=4 height=400 widht=300>

Page 36: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Picture

<html><head> <meta name="Author" content=“Hustina"></head><body text="#000000" bgcolor="#3366FF" link="#FFFFFF"

vlink="#551A8B" alink="#FF0000"> <img SRC =“c:\campuran\kartu.gif“ height=200 width=400></a> In this site you can see my resume and in this <a href="http://www.kompas.com">site</a> you can read some

news <br> You can drop your email to <P> <a

href=“mailto:[email protected]">[email protected]</a>

</body></html>

Page 37: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 38: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Animation

<MARQUEE WIDTH/HEIGHT=A BGCOLOR=B SCROLLDILEY=C LOOP=D BEHAVIOR=E DIRECTION=F>…isi teks…</MARQUEE>

Note:

A = Widht/Height Marquee (pixel/percent)

B = Background Marquee

C = Delay Animation

D = Looping animation, value = -1

E = Animation models : scroll, Slide dan alternate.

F = Animation direction

Page 39: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Animation

<HTML><head> <meta name="Author" content="Hustina"></head><body><p>Text Animation Use Slide Marquee</P> <marquee direction=right width=50%

height=10% bgcolor=blue scrolldelay=300 behavior=slide> Universitas Gunadarma Program Pasca Sarjana

</Marquee></body></HTML>

Page 40: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 41: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Table

<TABLE | ALIGN = A BACKGROUND = B BGCOLOR = C

CELLSPACING = D CELLPADDING = E BORDER = F | >

<CAPTION> .... Tabel Caption .... </CAPTION>

<TR><TH> .... Column Header ..... </TH></TR>

<TR><TD> .... Fill cell .... </TD></TR>

</TABLE>

Note:

A = Alignment (left / center / right)

B = Picture Background cell

C = Color Backgrount cell

D = Size border cell

E = Number column

F = Number Row

Page 42: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Table

<HTML><HEAD> <TITLE> Creating Tabel in HTML</TITLE>

</HEAD><BODY><TABLE BORDER = 4><CAPTION> Result survey Jak-Jazz 1993

</CAPTION><TR><TH ROWSPAN = 2> </TH> <TH ROWSPAN = 2> </TH><TH COLSPAN = 3> ARTIST </TH> </TR><TR><TH> Hiroko Kokubu </TH><TH> MezzoForte </TH><TH> Casiopea </TH></TR>

Page 43: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Table

<TR><TH ROWSPAN = 2> HARI</TH><TH> Hari I </TH><TD ALIGN = CENTER> 20% </TD><TD ALIGN = CENTER> 33% </TD><TD ALIGN = CENTER> 47% </TD></TR><TR><TH> Hari II </TH><TD ALIGN = CENTER> 20% </TD><TD ALIGN = CENTER> 68% </TD><TD ALIGN = CENTER> 12% </TD></TR></TABLE></BODY></HTML>

Page 44: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 45: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding MultiColumn

<MULTICOL COLS=A GUTTER=B WIDTH=C>

<P>………</P>

<P>………</P>

<P>………</P>

</MULTICOL>

Note:

A = Column

B = Space

B = Width

Page 46: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Multicolumn

<html><MULTICOL COLS="3" GUTTER="25"><P>The Office Assistant, which replaces the PowerPoint 95 Answer Wizard, uses IntelliSense natural-language technology. </P><P>The AutoContent Wizard has been enhanced in PowerPoint 97</P><P>PowerPoint Central links you with many helpful resources ¾ such as tutorials, professionally designed templates, additional textures, sounds, and animation clips</P></MULTICOL></html>

Page 47: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Frame

<FRAMESET ROWS COLS SCROLLING NORESIZE>

<FRAME SRC…..>

<FRAME SRC…..>

<FRAME SRC…..>

</FRAMESET>

EXAMPLE:

<FRAMESET ROWS=”20%,60%,20%”>

<FRAME SRC=”dokumen1.htm” NAME=”dok1”>

<FRAME SRC=”dokumen2.htm” NAME=”dok2”>

<FRAME SRC=”dokumen3.htm” NAME=”dok3”>

</FRAMESET>

Page 48: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Adding Frame

<html><FRAMESET ROWS="10%,20%,30%> <FRAME

SRC="http://www.microsoft.com"> <FRAME

SRC="http://www.kompas.com/index.htm">

<FRAME SRC="http://www.borland.com/delphi/">

</FRAMESET></html>

Page 49: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.
Page 50: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Web Site which offer guest book service:

http://www.theguestbook.com/ http://globalguest.com/ http://www.guestbook.de/ http://www.escati.com/ http://www.countz.com/guestbooks/http://guest.onecenter.com/ http://www.bravenet.com/etc.

Page 51: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Your first task

Login with this command: login siswaXX

Create a directory to put all your files there

Put your image file therebegin to practice ;-)

Page 52: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

Your second task

Create a homepage about your self (time= 30 minutes)

Page 53: Introduction to Computer Application II. Today‘s Subject Power Point »Practice »Presentation Summary Internet Application HTML Program »Practice.

ASP & Flash from- why

Smart eye-catching interactive Flash interface. Viewing guest entries one at a time through a book-like interface.

Guest book entries stored in a SQL Server or Access database.

Loads 50 entries at a time beginning from the recent most. Using the 'load next batch of entries' button you can load the next batch of guest records.

Fantastic load time due to highly optimized code and very small Flash file (9 KB).

Client-side validation for Name and e-mail address fields.