+ All Categories
Home > Documents > Welcome to CMPE003 Personal Computers: Hardware and Software

Welcome to CMPE003 Personal Computers: Hardware and Software

Date post: 31-Dec-2015
Category:
Upload: plato-slater
View: 34 times
Download: 0 times
Share this document with a friend
Description:
Welcome to CMPE003 Personal Computers: Hardware and Software. Dr. Chane Fullmer Fall 2002 UC Santa Cruz. Assignments. Assignment #5 – Due November 8, 2002 Programming Edit a Java Script program file If you want more information about javascript, visit http://www.htmlgoodies.com. - PowerPoint PPT Presentation
Popular Tags:
46
Welcome to CMPE003 Personal Computers: Hardware and Software Dr. Chane Fullmer Dr. Chane Fullmer Fall 2002 Fall 2002 UC Santa Cruz UC Santa Cruz
Transcript
Page 1: Welcome to CMPE003 Personal Computers: Hardware and Software

Welcome to CMPE003 Personal Computers: Hardware and Software

Dr. Chane FullmerDr. Chane Fullmer

Fall 2002Fall 2002

UC Santa CruzUC Santa Cruz

Page 2: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 2

Assignments

Assignment #5 – Due November 8, 2002 Programming

– Edit a Java Script program file If you want more information about

javascript, – visit http://www.htmlgoodies.com.

http://www.soe.ucsc.edu/classes/cmpe003/Fall02/hw5_javascript.html

Page 3: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 3

Class Information

Midterm #2 – Monday – November 4, 2002.– ID required.– Covers Chapters 6 through 10.

• Book reading plus lectures.

– Multiple choice• Requires Scantron #F-1712-ERI-L (pink)• ~50 questions

– No makeups after the fact

Page 4: Welcome to CMPE003 Personal Computers: Hardware and Software

Writing Your Own Web Page: Using HTML and FrontPage

Chapter 10

Page 5: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 5

Objectives

Identify the hardware and software required to write, test, and execute a web page

Describe how HTML tags are used to format Web pages

Discuss the benefits of using Web page authoring software

Describe how FrontPage can be used to write a web page.

Page 6: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 6

World Wide Web

Provides multimedia communication over the Internet

HTML drives the web– HyperText Markup Language– The language of browsers

Page 7: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 7

HTMLHyperText Markup Language

HyperText– Active text– Link– Clicking causes an

action Markup Language

– Tags indicate formatting and document structure

– Source is processed by a program that understands the tags and formats the page

Page 8: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 8

Preparing a Web Page

Writing vehicle– Programming in HTML– Authoring software

Browser– Test the code locally– Test the code on the server

Server– Test links to other sites– Store your published site

Page 9: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 9

Programming in HTML

Type tags into a text file (Notepad) HTML editor HTML code must be saved with .html extension

Page 10: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 10

Authoring Software WYSIWYG

– “What You See Is What You Get” Create web page visually HTML code is generated automatically

Page 11: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 11

Preparing a Web PageProcess

Use writing vehicle to create web site pages Test locally using the browser Connect to Internet using your browser Test the links to other sites ‘Publish’ the site to your server Test the site by accessing from the server

Page 12: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 12

HTMLBasic Tags

Tag – tells browser how to display the information provided

Enclosed in angle brackets < > Generally used in pairs

– Open tag– Closing tag – same tag with ‘/’ in front

Can nest tags Tags cannot overlap

Page 13: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 13

HTMLDocument Tags

<HTML> … </HTML>Beginning and end of every HTML document

<HEAD> … </HEAD>Contains information about the document including the title that is to appear in the title bar

<BODY> … </BODY>All content for the page is placed between these tags

Page 14: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 14

HTMLBasic Tags

<HTML>

<HEAD>

</HEAD>

<BODY>

</BODY>

</HTML>

If you view this from the browser, you will see a blank page

Page 15: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 15

HTMLBasic Tags

<TITLE> … </TITLE>Causes the page title to be displayed in the title bar

Place in the heading section between<HEAD> … </HEAD>

Page 16: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 16

HTMLBasic Tags

Add content between <BODY> … </BODY>Text Structure Tags

HeadingsParagraphsListsImages

Page 17: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 17

HTMLCreating and Testing

Open text editor Enter basic document tags

<HTML>

<HEAD> … </HEAD>

<BODY> … >/BODY>

</HTML>

Save as .html (as .htm for older M$ systems) Do not close text editor

Page 18: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 18

Open Browser

Open your browser Type file path/name as the URL or use File

Open and select the file The file name should appear in the URL

textbox The main window should be blank Do not close the browser

Page 19: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 19

Adding a title to the title bar

Return to the open file in the text editor Add a <TITLE> tag inside <HEAD> Save Return to the browser Click refresh or reload button Check the title bar (aka welcome banner)

Page 20: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 20

Adding content

Add one tag at a time to create content After each addition

– Save the file in the text editor– Refresh/reload the file in the browser– Verify that your entry is correct

Page 21: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 21

HTML Text TagsHeading Tags

<H1> … </H1> Largest heading

<H2> … </H2>

<H3> … </H3>

<H4> … </H4>

<H5> … </H5>

<H6> … </H6> Smallest heading

<H1>Theatre Schedule</H1>

Page 22: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 22

HTML Text TagsParagraph Tag

<P> … </P> Blank line inserted before the start of the paragraph One space between adjacent words regardless of the

number of spaces in the source Extra spaces and lines are ignored

<P>Learning HTML is a lot of fun!</P>

Page 23: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 23

HTML Text TagsLine Break Tag

<BR>Forces a new line

<P>Learning HTML is a lot of <BR>fun!</P>

Page 24: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 24

Lists

<UL> … </UL>Unordered list (bulleted list)

<OL> … </OL>Ordered list (numbered list)

Every item in a list is preceded with <LI>

</LI> at end of each item is optional

List contents are indented

HTML List Tags

Page 25: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 25

HTML Formatting Tags

Make page more attractive Make page more functional Style Tags

– Logical– Physical

Page 26: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 26

HTML Formatting TagsLogical Style Tags

Browser dependent

Emphasis Tag<EM> … </EM>

Usually displays italics

Strong emphasis Tag<STRONG> … </STRONG>

Usually displays boldface

Page 27: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 27

Physical Style Tags

Tell browser how to display the textItalics

<I> … </I>

Boldface<B> … </B>

Center<CENTER> … </CENTER>

Page 28: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 28

Images Use images that are appropriate and attractive Use sparingly since they effect download time

– If possible reduce actual size of image to fit page

Page 29: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 29

Obtaining Images

Download from a site that offers free images

Pay to use an image Scan an image/document that you own

or have permission to use Digital camera Create original graphics using software

Page 30: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 30

Image File Formats

Acceptable image formats vary by browser Generally acceptable formats are

– GIF• Graphics Interchange Format• Use for graphics

– JPG (aka JPEG)• Joint Photographic Experts Group• Use for photographs

– PNG• Portable Network Graphics• Expected to replace GIF

Page 31: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 31

HTML Image TagInline image

Loaded with HTML code

<IMG>Attributes:

SRCALTHEIGHTWIDTHALIGNHSPACEVSPACE

<IMG SRC=”abcpict.jpg”>

<IMG SRC=”abcpict.jpg” ALIGN=”right” HSPACE=”10”>

Page 32: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 32

HTML Link Tag

Link toOther sites

Between your own pages

To e-mail

<A HREF=”name”>hypertext</A>

<A HREF=”http://www.kodak.com”>Kodak</A>

<A HREF=”johnpage.html”>John’s Page</A>

<A HREF=”mailto:[email protected]”>John’s mail</A>

Page 33: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 33

HTML TagsBackground Color / Graphics

Attributes of <BODY>

BGCOLOR=”code”Specify color for background of the screen

BACKGROUND=”path/file”Tiles the graphic in the file to fit the screen

<BODY BGCOLOR=”green”>

<BODY BGCOLOR=”#00FF00”>

<BODY BACKGROUND=”abcpict.jpg”>

Page 34: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 34

Authoring SoftwareM$ FrontPage

WYSIWYG Generates HTML code Benefits

– Non-technical users can create their own web pages

– Technical users can insert HTML inside the generated HTML

Page 35: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 35

Getting Started in FrontPage

Window similar to Office 2000 Windows Process to create a web page

– Select the type of page you wish to create– Enter content– Format content– Add a title– Add links and graphics– View

Page 36: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 36

Navigation View

Shows structure of web site Visual clue showing how the subpages

relate to the main page

Page 37: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 37

Other Views

Folders– Lists the files in detail

Reports– Provides information of interest to site manager

Hyperlinks– Graphics picture of link relationships

Tasks– List of items that need to be completed and who is

responsible– Useful for collaboration

Page 38: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 38

Page Tabs

Normal tab– Viewing the page in WYSIWYG

HTML tab– The HTML code for the page– Add your own HTML code to this page

Preview– Page as it will appear viewed by a browser– Switch between HTML tab and Preview tab to see

the effect of changes as you make them

Page 39: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 39

Estimated Loading Time

Listed at the bottom of the page Try to keep loading time low Can be changed to show loading time

using different modem speeds

Page 40: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 40

Themes

Background Fonts Banners Bullets Link buttons

Unified set of design elements and color schemes that you can apply to a page to give it a consistent and attractive appearance

Page 41: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 41

Examples of Themes

Page 42: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 42

Page Templates

Columns

Table of contents

Searches

Guest book

Bibliography

FAQ

Forms for visitors

Forms for customers

Predesigned pages that can contain page settings, formatting, and page elements

Page 43: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 43

Page Templates Examples

Page 44: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 44

Frames

Divides the page into sections

Each section displays a different web page

Each section can be updated individually

Frameset – collection of frames displayed in a single page

Page 45: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 45

Process of building with frames

Develop each page individually Create frameset page Establish links

Page 46: Welcome to CMPE003 Personal Computers: Hardware and Software

October 30, 2002 46


Recommended