+ All Categories
Home > Documents > Mission HTML The Search for the Personal Web Page.

Mission HTML The Search for the Personal Web Page.

Date post: 31-Mar-2015
Category:
Upload: sky-garret
View: 214 times
Download: 0 times
Share this document with a friend
Popular Tags:
24
Mission HTML The Search for the Personal Web Page
Transcript
Page 1: Mission HTML The Search for the Personal Web Page.

Mission HTML

The Search for the Personal Web Page

Page 2: Mission HTML The Search for the Personal Web Page.

Your Mission:

• To learn how to create a well-designed and effective personal web page.

Page 3: Mission HTML The Search for the Personal Web Page.

What’s a Personal Web Page?

• A personal web page is a page that is located on the Internet and is usually about someone’s personal interests.

Want to see some examples?

Page 4: Mission HTML The Search for the Personal Web Page.

Personal Web Pages

• After this lesson, visit our site to see some pages we created:-- PVMMSA Web Design

Page 5: Mission HTML The Search for the Personal Web Page.

What do you need to create your personal web page?

• You will need:– A computer– Notepad (software program)– An Internet connection– Patience

Page 6: Mission HTML The Search for the Personal Web Page.

Let’s Get Started…What is HTML?

Hyper Text Markup Language

-- or --

The language of the Internet

Page 7: Mission HTML The Search for the Personal Web Page.

Just like other countries speak different languages, computers

have different languages.

Hola! Guten Tag!

Merhaba! Bonjour!

The basic language of the Internet is HTML.

Page 8: Mission HTML The Search for the Personal Web Page.

What does HTML look like?

<html>

<head><title>Title goes here</title></head>

<body>Body goes here

HTML is cool! </body>

</html>

Notice that every TAG

comes in a pair!

Page 9: Mission HTML The Search for the Personal Web Page.

TAGs in Pairs?????

With HTML, you tell the computer what to do.

You give the computer commands by typing in what you want the computer to do.

Those commands are called TAGs.

Page 10: Mission HTML The Search for the Personal Web Page.

For example…When you type

<HTML>You are telling the computer to a web page.

By adding a slash to that command…

</HTML>You tell the computer to a web page.

start

stop

Page 11: Mission HTML The Search for the Personal Web Page.

Type? TAGs?

• Yes! You’re going to use a program called Notepad. It’s on your computer under Programs Accessories.

• This is where you will type the TAGs and anything that you want to go on your webpage.

Page 12: Mission HTML The Search for the Personal Web Page.

Before you get started…

Find the angle brackets (<) (>) on your keyboard.

Everyone point to the angle brackets

on your keyboard right now!

J K L ;

N M < > ?/

Page 13: Mission HTML The Search for the Personal Web Page.

What else should you look for?Another key you will be typing a lot is

the slash (/).

J K L ;

N M < > ?/

Everyone point to the slash

on your keyboard right now!

Page 14: Mission HTML The Search for the Personal Web Page.

What about the other TAGs?

<head><title>Title goes here</title></head>

<body>Body goes here

HTML is cool! </body>

Do these names of the TAGs

grouped together remind you of

something?

Page 15: Mission HTML The Search for the Personal Web Page.

Do they remind you of a letter you might write someone?

<head><title>Title goes here</title></head>

<body>Body goes here

HTML is cool!

</body>

Heading

Title ( or subject)

Body

Page 16: Mission HTML The Search for the Personal Web Page.

Now add the Opening and Closing…

<html>

<head><title>Title goes here</title></head>

<body>Body goes here

HTML is cool! </body>

</html>

and you have a basic web page!

Page 17: Mission HTML The Search for the Personal Web Page.

Let’s try it!

• Open Notepad. (Remember: Start buttonProgramsAccessoriesNotepad.)

Page 18: Mission HTML The Search for the Personal Web Page.

Type in this…

<html>

<head><title>My First Webpage!</title></head>

<body>HTML is cool!</body>

</html>

Page 19: Mission HTML The Search for the Personal Web Page.

Now what?• Save your file:

– File menuSave As

Change the name of your file to “first name, last initial, webpage.html”

–For example: AliciaJwebpage.html

Notice that there are

NO SPACES in the name of the file!

Page 20: Mission HTML The Search for the Personal Web Page.

Your page should look like this…When you open your page in Internet Explorer,

title

body

Page 21: Mission HTML The Search for the Personal Web Page.

Want to see something cool?• Go back to your webpage that you just

opened in Internet Explorer.

• Click on the View menuSource.

Does that look familiar?

You can see the “source” of any page on the Internet.

This way, you can learn from other pages!

Page 22: Mission HTML The Search for the Personal Web Page.

What else can you do?(In Notepad, type in the new gold items exactly

where they are shown.)<html>

<head><title>My First Webpage!</title></head>

<body>HTML is cool!<hr>Benito Middle Rules!</body>

</html>

Page 23: Mission HTML The Search for the Personal Web Page.

Now what?

• Save your file:

–FileSave As

Change the name of your file to “first name, last initial, page.htm”

–Click YES when the message asks you if you want to replace it.

Page 24: Mission HTML The Search for the Personal Web Page.

Your page should look like this…When you open your page in Internet Explorer,

<hr> = horizontal rule Benito Middle


Recommended