Lesson 1: Introduction to HTML

26
HTML Lesson 1: Introduction To HTML By Olivia Moran [Codo Dojo – HTML Group Sligo, Ireland] liviamoran.me www.oliviamoran.me http://www.slideshare.net/oliviamoran < <

description

This presentation is a basic introduction into the markup language HTML.

Transcript of Lesson 1: Introduction to HTML

Page 1: Lesson 1: Introduction to HTML

HTML Lesson 1: Introduction To HTML

By Olivia Moran

[Codo Dojo – HTML Group Sligo, Ireland]

liviamoran.me www.oliviamoran.me http://www.slideshare.net/oliviamoran

<

<

Page 2: Lesson 1: Introduction to HTML

You don’t have to be a Web ninja to understand the

basics of HTML

Page 3: Lesson 1: Introduction to HTML

Web pages can be created using HTML code

Page 4: Lesson 1: Introduction to HTML

What Does

HTML stand for?

Page 5: Lesson 1: Introduction to HTML

Hyper Text

Markup Language

Page 6: Lesson 1: Introduction to HTML

What is HTML?

Page 7: Lesson 1: Introduction to HTML

Web authoring language Specifically created to make

World Wide Web pages

Page 8: Lesson 1: Introduction to HTML

Tim Berners-Lee

Page 9: Lesson 1: Introduction to HTML

What?

• Language for describing web pages

• It enables you to format text, sounds, graphics etc

• Can be read and understood by all computers

• Is it a set of markup tags

• These tags are used to describe web pages

Hyper Text Markup Language

Page 10: Lesson 1: Introduction to HTML

First Web Page

Page 11: Lesson 1: Introduction to HTML

Navigation/ Menus: Images:

Icons: Text:

Page 12: Lesson 1: Introduction to HTML

How do you view

Web pages?

Page 13: Lesson 1: Introduction to HTML

First Web Browser

Page 14: Lesson 1: Introduction to HTML

How do I find

Web pages?

Page 15: Lesson 1: Introduction to HTML

First Search

Engine

Page 16: Lesson 1: Introduction to HTML

Did you know that you can view the HTML code of any page on the web?

Page 17: Lesson 1: Introduction to HTML
Page 18: Lesson 1: Introduction to HTML

When I see a web page on the Web. Where is the

page stored?

Page 19: Lesson 1: Introduction to HTML
Page 20: Lesson 1: Introduction to HTML
Page 21: Lesson 1: Introduction to HTML

HTML Document

It might feel chaotic and unstructured …

But the entire content of the page exists here

Page 22: Lesson 1: Introduction to HTML

How Do I create HTML pages?

Page 23: Lesson 1: Introduction to HTML

Open a text editor: Any Text Editor Will Do … Notepad is Perfect!

Save your document as index.html

Don’t forget to select All files or else your PC will save it as a text file

Page 24: Lesson 1: Introduction to HTML

<html>

<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

<p>My second paragraph.</p>

</body>

</html>

Body, Heading, Paragraph Tags

Page 25: Lesson 1: Introduction to HTML

What is it?

• Defines a title in the browser toolbar

• Provides a title for the page when it is added to favorites

• Displays a title for the page in search-engine results

Title Tag

Page 26: Lesson 1: Introduction to HTML

<html>

<head>

<title>Title of the document</title>

</head>

<body>

The content of the document......

</body>

</html>

Title Tags