Basic html

10
Basic HTML By Linda Shan, EE3 Business Contest, Jiahua School October 17, 2010

description

This was Linda Shan's PPT for her presentation of basic HTML used in the Jiahua Business Contest Finals on October 17th, 2010

Transcript of Basic html

Page 1: Basic html

Basic HTML

By Linda Shan, EE3

Business Contest, Jiahua School

October 17, 2010

Page 2: Basic html

WORLD WIDE WEB

URL:

Uniform Resource Identifier

HTTP:

HyperText Transfer Protocol

HTML:

HyperText Markup Language

Page 3: Basic html

The Father of WWW

Tim Berners-Lee

Page 4: Basic html

What is HTML?

HTML is a language for describing web pages.

HTML is not a programming language, it is a markup language

A markup language is a set of markup tags

HTML uses markup tags to describe web pages

Page 5: Basic html

HTML & Web Page

Page 6: Basic html

Why We Learn HTML?

Page 7: Basic html

Markup Tags

HTML tags are keywords surrounded by angle brackets like <html>

HTML tags normally come in pairs like <b> and </b>

The first tag in a pair is the start tag, the second tag is the end tag

Page 8: Basic html

HTML Elements

Quiz: how many elements below? <html>

<body><p>This is my first paragraph.</p></body>

</html>

Page 9: Basic html

Examples of HTML

Headings: <h1>This is a heading</h1>

Paragraphs: <p>This is a paragraph</p>

Styles: <body style="background-color:yellow">

Links: <a href="http://www.example.com/">Link-text goes here</a>

Images:<img src="boat.gif" alt="Big Boat" />

Page 10: Basic html

Learn HTML