Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what...

12
HTML Communicating Information: Web Design

Transcript of Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what...

Page 1: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

HTMLCommunicating Information: Web Design

Page 2: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

2 of 12

What is HTML?

HyperText Mark-up Language is what enables the browser to identify how to

display text or graphics on a web page.

HTML is made up of tags.

Tags are the angle brackets.

< >

Page 3: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

3 of 12

The words inside the brackets are called elements.

Title is the element inside the tag.

<title>

Page 4: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

4 of 12

Container tags come in twos, one at the beginning and one at the end.

Notice the difference between them.

There are two types of tags.

<title> </title>

Page 5: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

5 of 12

Empty tags stand on their own.

There is only one.

<br>

Page 6: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

6 of 12

<body><BODY>

For consistency stick to one or the other.

HTML can be written either in capital letters or lower-case.

Page 7: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

7 of 12

Understanding the language

the head <html>

<head>

<title>

</title>

</head>

<body>

</body>

</html>

A web page is divided into two:

and the body.

Page 8: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

8 of 12

<html>

<head>

<title>spiders, creepy crawlies</title>

</head>

The text inside the head tag cannot be seen. The title is used to include words that describe the web page. These words are used by search engines to find the relevant web sites.

Page 9: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

9 of 12

<body><h1>Spiders: The facts</h1><p>Spiders are not insects. They have eight legs.</p><p>They inject venom with their fangs</p></body></html>

The text inside the body is seen on the web page.

To make text bigger we use headings <h1> to <h6> . <h1> is the biggest.

<p> starts a new paragraph.

Page 10: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

10 of 12

HTML matching

Page 11: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

11 of 12

Tag, drag and drop

Drag the tags around the edge of the screen into the correct spaces to complete the HTML document.

Page 12: Communicating Information: Web Design. 2 of 12 What is HTML? HyperText Mark-up Language is what enables the browser to identify how to display text or.

12 of 12

Summary

HTML stands for HyperText Mark-up Language.

HTML enables the browser to identify how to display text or graphics on a web page.

It is made up of tags and elements.

There are two types of tags: container and empty.

A web page is divided into two parts: the head and the body.

Only the text in the body can be seen.

What can I remember?