web pages: creating and maintaining ** cajee cordeiro [email protected] cordeicf instructor:...

18
WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro [email protected] http://udel.edu/~cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

Upload: elmer-parrish

Post on 19-Jan-2016

216 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

WEB PAGES: CREATING AND MAINTAINING **

Cajee [email protected]

http://udel.edu/~cordeicf

Instructor:

Wednesday: 2:00pm -3:15pm

Week 2

Page 2: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2
Page 3: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

WYSIWYG Editors

Web pages on the Internet ?

What is a web page ??

Server vs. Client

How do I access a web page ?What’s a Browser ?

Default page - “ index.html ”

hypertext transport protocol

Learning HTML

Learning HTML

Plan Your Site

Page 4: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

Go to theClass website:

http://udel.edu/~cordeicf

Click on week 2

Page 5: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

Creating your First Web Page

Using HTML Tags

Page 6: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

Is it Difficult ...

Is this going to require that I learn a whole newComputer language like Basic or Fortran or someother cryptic, God-awful, silly-lookin', gothicextreme gobbledygook?

6

IF IF = THEN THEN THEN = ELSE ELSE ELSE = IF;

Page 7: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

Questions … Answers...

7

Q. Must I be logged onto the Internet to do this? Specifically, will learning this make me spend a lot of time on-line?

A. No. You will write off-line.

Page 8: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

Questions … Answers...

8

Q. Do I need an expensive program to help me write this?

A. No. You will write using just Notepad.You can buy those programs if you'd like, but they're not needed.

But are they EASIER to use?

Page 9: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

916

Typical Program to “easily” create a website

PICK ONE!

Page 10: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

How ….

• Use Notepad to create a text file

• Learn simple rules of H.T.M.L

• Hyper Text Markup Language

• Display using Browser

10

Page 11: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

HTML - Simple - yeah right!

11

Page 12: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

HTML - Simple - yeah right!

• Just like reading…

• Top to bottom….• Left to right …

12

You just create a “simple” text file

• with “Tags”

Page 13: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

Hyper Text Markup Language

13

< >

< u >

< /u >

Use TAGS (commands)

Example:

to start underline:

to stop underline

Important! No Spaces

Page 14: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

14

< u >

LEARNING HTML IS EASY

HTML

< /u >

The Underline TagEndingStarting

LEARNING <u> IS EASY</u>

Page 15: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

15

LEARNING HTML IS EASY

HTMLLEARNING <u> IS EASY</u>

This is what will be displayed in the Browser

This is what you typed into the Text File.

Page 16: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

17

< html > < /html >

EndingStarting

Tags that are on ALL Web Pages !!!

< head > < /head >

< title > < /title >

< body > < /body >

Page 17: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

18

Basic Tags on All Web pages

16

<html>

</body>

<head>

</head>

<title>

</title>

<body>

</body>

They define sections of the page

Page 18: WEB PAGES: CREATING AND MAINTAINING ** Cajee Cordeiro Cordeicf@Udel.Edu cordeicf Instructor: Wednesday: 2:00pm -3:15pm Week 2

19

Basic Tags on All Web pages

16

<html>

<html>

<head>

</head>

<title>

</title>

<body>

</body>

This is the title

Welcome to my webpage