7
Slide Slide 1 1 Chapter 2 Chapter 2 HTML Document Structure HTML Document Structure

Chapter2in wd

Embed Size (px)

Citation preview

Page 1: Chapter2in wd

Slide Slide 11

Chapter 2Chapter 2

HTML Document StructureHTML Document Structure

Page 2: Chapter2in wd

Slide Slide 22

Chapter 2Chapter 2

The Save As Dialog BoxThe Save As Dialog Box

Page 3: Chapter2in wd

Slide Slide 33

Chapter 2Chapter 2

HeadingsHeadings

<html><html>

<head><head><title>Heading <title>Heading Formats</title>Formats</title></head></head>

<body><body><h1>Heading 1</h1><h1>Heading 1</h1><h2>Heading 2</h2><h2>Heading 2</h2><h3>Heading 3</h3><h3>Heading 3</h3><h4>Heading 4</h4><h4>Heading 4</h4><h5>Heading 5</h5><h5>Heading 5</h5><h6>Heading 6</h6><h6>Heading 6</h6></body></body>

</html></html>

Page 4: Chapter2in wd

Slide Slide 44

Chapter 2Chapter 2

Bulleted and Numbered ListsBulleted and Numbered Lists

unordered listunordered list ordered listordered list

Page 5: Chapter2in wd

Slide Slide 55

Chapter 2Chapter 2

TablesTables

Page 6: Chapter2in wd

Slide Slide 66

Chapter 2Chapter 2

HyperlinksHyperlinks<html><html>

<head><head><title>Images</title><title>Images</title></head></head>

<body><body><p>Images can come from a variety of sources <p>Images can come from a variety of sources including <a href="digicam.htm">digital including <a href="digicam.htm">digital cameras</a>.</p>cameras</a>.</p></body></body>

</html></html>

Page 7: Chapter2in wd

Slide Slide 77

Chapter 2Chapter 2

JavaScriptJavaScript

<head><head><title>JavaScript <title>JavaScript Greeting</title>Greeting</title><script <script type="text/javascript">type="text/javascript">// Display a greeting// Display a greetingalert("Hello World!");alert("Hello World!");</script></script></head></head>