200 likes | 281 Views
WEB PAGES: CREATING AND MAINTAINING **. Wednesday : 10:15 - 11:15. Instructor:. Frank Romanelli FrankR@Udel.Edu http://udel.edu/~frankr. Week 2. h yper t ext t ransport p rotocol. What’s a Browser ?. WYSIWYG Editors. How do I access a web page ?. What is a web page ??.
E N D
WEB PAGES: CREATING AND MAINTAINING ** Wednesday: 10:15 -11:15 Instructor: Frank Romanelli FrankR@Udel.Edu http://udel.edu/~frankr Week 2
hypertext transport protocol What’s a Browser ? WYSIWYG Editors How do I access a web page ? What is a web page ?? Default page - “ index.html ” Learning HTML Plan Your Site Web pages on the Internet ? Server vs. Client
Pop Quiz Go to the Class website: http://udel.edu/~frankr
Creating your First Web Page Using HTML Tags
Is it Difficult ... Is this going to require that I learn a whole new Computer language like Basic or Fortran or some other cryptic, God-awful, silly-lookin', gothic extreme gobbledygook? IF IF = THEN THEN THEN = ELSE ELSE ELSE = IF; NO!
Questions … Answers... 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.
Questions … Answers... 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?
Typical Program to “easily” create a website PICK ONE! 16
How …. • Use Notepad to create a text file • Learn simple rules of H.T.M.L • Hyper Text Markup Language • Display using Browser
HTML - Simple - yeah right! • Just like reading… • Top to bottom…. • Left to right … • You just create a “simple” text file • with “Tags”
Hyper Text Markup Language Use TAGS (commands) < > Example: to start underline: • < u > Important! No Spaces • to stop underline • < /u >
The Underline Tag Starting Ending • < u > • < /u > LEARNING HTML IS EASY LEARNING <u> HTML </u> IS EASY
This is what will be displayed in the Browser LEARNING HTML IS EASY LEARNING <u> HTML </u> IS EASY This is what you typed into the Text File.
The Underline Tag Starting Ending • < u > • < /u > Tags that are on ALL Web Pages !!!
Tags that are onALL Web Pages !!! Starting Ending • < HTML > • < /HTML > • < HEAD > • < /HEAD > • < TITLE > • < /TITLE > • < BODY > • < /BODY >
Basic Tags on All Web pages <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> </BODY> </HTML> 16
Basic Tags on All Web pages <HTML> <HEAD> <TITLE> This is the title </TITLE> </HEAD> <BODY> Welcome to my webpage </BODY> <HTML> 16
Your Turn !! Open “Notepad” ( Start, All Programs, Accessories, Notepad ) Notepad 15
Basic Tags on All Web pages • <HTML> • <HEAD> • <TITLE> • my web page • </TITLE> • </HEAD> • <BODY> • welcome to my web page! • </BODY> • </HTML> • Optional …. • upper /lower • Indenting Verify your spelling, File Name = " web1.html " Save the file in “ My Documents / My Web Files " 17