Basic HTML By Linda Shan, EE3 Business Contest, Jiahua School October 17, 2010
WORLD WIDE WEB URL: Uniform Resource Identifier  HTTP: HyperText Transfer Protocol  HTML:  HyperText Markup Language
The Father of WWW Tim Berners-Lee
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
HTML & Web Page
Why We Learn 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
HTML Elements Quiz: how many elements below? <html> <body> <p>This is my first paragraph.</p> </body> </html>
Examples of HTML Headings:   <h1>This is a heading</h1> Paragraphs:   <p>This is a paragraph</p>  Styles:   <body style=&quot;background-color:yellow&quot;>  Links:   <a href=&quot;http://www.example.com/&quot;>Link-text goes here</a> Images: <img src=&quot;boat.gif&quot; alt=&quot;Big Boat&quot; />
Learn HTML

Basic html

  • 1.
    Basic HTML ByLinda Shan, EE3 Business Contest, Jiahua School October 17, 2010
  • 2.
    WORLD WIDE WEBURL: Uniform Resource Identifier HTTP: HyperText Transfer Protocol HTML: HyperText Markup Language
  • 3.
    The Father ofWWW Tim Berners-Lee
  • 4.
    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
  • 5.
  • 6.
  • 7.
    Markup Tags HTMLtags 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
  • 8.
    HTML Elements Quiz:how many elements below? <html> <body> <p>This is my first paragraph.</p> </body> </html>
  • 9.
    Examples of HTMLHeadings: <h1>This is a heading</h1> Paragraphs: <p>This is a paragraph</p> Styles: <body style=&quot;background-color:yellow&quot;> Links: <a href=&quot;http://www.example.com/&quot;>Link-text goes here</a> Images: <img src=&quot;boat.gif&quot; alt=&quot;Big Boat&quot; />
  • 10.