Top Banner
Using Hyper Text Markup Language to develop a Web page
56

Using Hyper Text Markup Language to develop a Web page.

Dec 29, 2015

Download

Documents

Dale Turner
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Using Hyper Text Markup Language to develop a Web page.

Using Hyper Text Markup Languageto develop a Web page

Page 2: Using Hyper Text Markup Language to develop a Web page.

Objectives

• Define vocabulary of HTML and use words to make tags.

• Define key HTML tags and implement them in source code.

• Create Web page using Notepad and view it in Browser.

Page 3: Using Hyper Text Markup Language to develop a Web page.

Objectives

• Explore and Master Lewis and Clark’s journey by research, cooperative work, and writing.

Page 4: Using Hyper Text Markup Language to develop a Web page.

Journal Entries (5)

• Geography• Climate• Science (animals, plants)• Co-explorers• Native Americans

Page 5: Using Hyper Text Markup Language to develop a Web page.

Journal Pictures (2)

• Choose 2 areas from above.• Make 2 pictures for journal entries.

Page 6: Using Hyper Text Markup Language to develop a Web page.

Journal Pictures (2)

When scanning or saving an image, abide by the following protocols:• The image must be saved as a JPEG

format only.• All images must be saved with the

extension .jpg• Your first image should be called

yourname1.jpg. The second image yourname2.jpg.

Page 7: Using Hyper Text Markup Language to develop a Web page.

Journal Pictures (2)

• All measurement is pixels only.• If the image is horizontal (or landscape

format), it must be cropped to no more than 700 pixels wide.

• If the image is vertical (or portrait format), it must be cropped to no more than 350 pixels wide.

Page 8: Using Hyper Text Markup Language to develop a Web page.

Journal Pictures (2)

• The resolution is set to 72 DPI only• The color format is RGB or Grayscale

only

Page 9: Using Hyper Text Markup Language to develop a Web page.

Sources (7)

• One source for each journal entry (5)• One source for each picture (2)• Sources cannot be duplicated.• Sources must be from academically

acceptable websites.

Page 10: Using Hyper Text Markup Language to develop a Web page.
Page 11: Using Hyper Text Markup Language to develop a Web page.

l

Page 12: Using Hyper Text Markup Language to develop a Web page.

l

Page 13: Using Hyper Text Markup Language to develop a Web page.

login

Page 14: Using Hyper Text Markup Language to develop a Web page.
Page 15: Using Hyper Text Markup Language to develop a Web page.
Page 16: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• URL---Universal resource locater or address of a Web site.

This is th

e URL

Page 17: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• HTML---Hyper Text Markup Language.

Page 18: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• HTML---Hyper Text Markup Language.

Page 19: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• Link---A clickable element that “links”

Page 20: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• Link---A clickable element that “links” or connects a page to another page within the same Web site.

Page 21: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• Link---A clickable element that “links”, or connects, a page to another page within the same Web site.

Page 22: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• Hyperlink--Connects a page to Web.

Page 23: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• Hyperlink--A clickable element that “links” or connects a page to another page on the World Wide Web.

Page 24: Using Hyper Text Markup Language to develop a Web page.

Vocabulary

• Tag---Code that instructs the browser to do a task.

<html>For example, <html>

tells the browser that

this code is comprised

of hyper text markup

language.

Page 25: Using Hyper Text Markup Language to develop a Web page.

• Class website has link to our pages

Page 26: Using Hyper Text Markup Language to develop a Web page.

• Lower case for all coding.• Lower case for all file names.• OK to use/upper/lower case for content

Page 27: Using Hyper Text Markup Language to develop a Web page.

• Make a new folder on your desktop• Name it using your first name and last

intitial only.

pauls, for example.

Page 28: Using Hyper Text Markup Language to develop a Web page.

• Go to the following website:• http//:carversville.com/us1• Locate your class (a12, a34, a78)• Locate your directory.

Page 29: Using Hyper Text Markup Language to develop a Web page.

• Click on your directory• Right click on the your page

Page 30: Using Hyper Text Markup Language to develop a Web page.

• Open Notepad.• Paste the code from your webpage into

the Notepad file.• Save the Notepad file as index.html to

your directory.

Page 31: Using Hyper Text Markup Language to develop a Web page.
Page 32: Using Hyper Text Markup Language to develop a Web page.

• Save the image to the same directory of your .html file.

• Drag the image to a browser.

Page 33: Using Hyper Text Markup Language to develop a Web page.

• Copy the entire URL

Page 34: Using Hyper Text Markup Language to develop a Web page.

• Now, go back to your Notepad file.• Find the following code:

<img src=“images/yourname.jpg">• Paste the URL and replace

images/yourname.jpg.• Save, refresh browser.

Page 35: Using Hyper Text Markup Language to develop a Web page.

• Now, go back to your Notepad file.• Find the following code:

<img src=“images/yourname.jpg">• Paste the URL and replace

images/yourname.jpg.• Save, refresh browser.

• <marquee scroll ="infinite" direction="left">

• </marquee>

Page 36: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• A simple program—Notepad—used to make Web pages

Page 37: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Open Notepad.

Page 38: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Open Notepad.• Type the following

HTML tag exactly as shown:

Page 39: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Open Notepad.• Type the following

HTML tag exactly as shown:

<html>

Page 40: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

<head>

Page 41: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

<title>

Page 42: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following words (you may substitute your own words):

My First

Web Page

Page 43: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

</title>

Page 44: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

</title>

Notice the “front slash” /before the word title.

Page 45: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

</title>The “front slash” / tellsthe browser to stop a

function. In this case the function is to put a title

in the very top of a browser page.

Page 46: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

</head>

Page 47: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Then:

press

enter

Page 48: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

<body>

Page 49: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

This tells the browser text is following: The text is Arial, the color is black

and the size is 3 on scale of 1-7.

<font face=“Arial” color=“black” size=“3”>

Page 50: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following words (you may substitute your own words):

This is my first Web

page. Welcome!

Page 51: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tag exactly as shown:

This tells the browser to stop looking for text.

</font>

Page 52: Using Hyper Text Markup Language to develop a Web page.

Building Pages

• Type the following HTML tags exactly as shown:

This tells the browser to stop looking for any more tags.

</body>

</html>

press enter

Page 53: Using Hyper Text Markup Language to develop a Web page.

Save Your Page

• Save your Web page like this:

In the “Save as type” box, choose All Files

firstname+last initial.html

(pauls.html)

Page 54: Using Hyper Text Markup Language to develop a Web page.

View Your Page• Now, view your

page.• You can do this

two ways:

1. Drag the icon of your Web page to a browser window

2. Or go to a browser and choose File/Open and navigate to your file.

Page 55: Using Hyper Text Markup Language to develop a Web page.

View Your Page• Now, view your

page.• You can do this

two ways:

1. Drag the icon of your Web page to a browser window

2. Or go to a browser and choose File/Open and navigate to your file.

Page 56: Using Hyper Text Markup Language to develop a Web page.

Congratulations!