html overview part 8 – java applets 1. applets 2 a java applet is a small application embedded in...

5
HTML Overview Part 8 – Java Applets 1

Upload: constance-sharp

Post on 18-Jan-2018

219 views

Category:

Documents


0 download

DESCRIPTION

Applet Tags 3  Applets are embedded in the HTML document with tags.  The applet tag has three required attributes:  code=“value” specifies the name of the applets class  width=“value” specifies the width for the applet display in pixels  height=“value” specifies the height for the applet display in pixels

TRANSCRIPT

Page 1: HTML Overview Part 8 – Java Applets 1. Applets 2  A Java applet is a small application embedded in your HTML document which runs in the browser window

HTML OverviewPart 8 – Java Applets

1

Page 2: HTML Overview Part 8 – Java Applets 1. Applets 2  A Java applet is a small application embedded in your HTML document which runs in the browser window

Applets

2

A Java applet is a small application embedded in your HTML document which runs in the browser window.

Applets can be animated banners, stock ticker tapes, photo cubes and animated video clips.

Applets are downloaded onto the user’s computer and run from their system.

Applets are secure – they do not have the ability to read or write to files on a user’s computer.

Page 3: HTML Overview Part 8 – Java Applets 1. Applets 2  A Java applet is a small application embedded in your HTML document which runs in the browser window

Applet Tags

3

Applets are embedded in the HTML document with tags.

<applet> </applet> The applet tag has three required attributes:

code=“value” specifies the name of the applets class

width=“value” specifies the width for the applet display in pixels

height=“value” specifies the height for the applet display in pixels

Page 4: HTML Overview Part 8 – Java Applets 1. Applets 2  A Java applet is a small application embedded in your HTML document which runs in the browser window

Applet Parameters

4

Applets may also require parameters. Parameters allow users to specify custom

values to use in an Applet. Parameters are specified with the <param /> tag.

Page 5: HTML Overview Part 8 – Java Applets 1. Applets 2  A Java applet is a small application embedded in your HTML document which runs in the browser window

Assignment

5

Complete Practice: Computer viruses – Part 5 of 5 on page 60. Save as lastname_clock.html