10
Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use software to create a web page

Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Embed Size (px)

Citation preview

Page 1: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 1

Today you will:

think about criteria for judging a website

understand that an effective website will match the needs and interests of users

use software to create a web page

Page 2: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 2

The task:

create a web page

give it a title

add links

add pictures

Page 3: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 3

HTML: Hypertext Markup LanguagePull down View, then Source, to see the HTML code.

Slide 3

Page 4: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 4

Basic page

<html>

</html>

<body>

</body>

Search engines

Page 5: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 5

Basic page

<html>

<body>

<h1>Search engines</h1>

</body>

</html>

The <h1> tag sets text as a heading in style 1.

Valid tags are <h1>; <h2>; <h3>; <h4>; <h5>; <h6>.

What effect does changing the number have?

Page 6: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 6

Basic page

<html>

<body>

<h1>Search engines</h1>

Yahoo<br>

Excite<br>

Google<br>

</body>

</html>

<br> creates a line break

<p> and </p> can be used to begin and end a paragraph

Page 7: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 7

Adding hyperlinks

<html>

<body>

<h1>Search engines</h1>

<a href="http://www.yahoo.com">Yahoo</a><br>

<a href="http://www.excite.co.uk">Excite</a><br>

<a href="http://www.google.fr">Google</a><br>

</body>

</html>The URL of a hyperlink must be enclosed in quotation marks

Page 8: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 8

Adding the title

<html>

<head><title>Information on search engines</title></head><body><h1>Search engines</h1><a href="http://www.yahoo.com">Yahoo</a><br><a href="http://www.excite.co.uk">Excite</a><br><a href="http://www.google.fr">Google</a><br></body></html>

The title is not the same as the page heading

Page 9: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 9

Creating the HTML file

The text file can be created in a simple text editor such as Notepad.

The file name must have .htm at the end to indicate that it is a web page.

The file contains instructions to the web browser that describe how the page should look.

Page 10: Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use

Slide 10

Judging a website

Is the information relevant to the users?

Is it clear, up-to-date, accurate and unbiased?

Do the images enhance, not distract? Are they meaningful? Is the font size suitable?

Is the site easy to use and to navigate?