Skip to Content
Absolute Beginner's Guide to Programming, Third Edition
book

Absolute Beginner's Guide to Programming, Third Edition

by Greg Perry
November 2002
Beginner content levelBeginner
432 pages
11h 44m
English
Que
Content preview from Absolute Beginner's Guide to Programming, Third Edition

Simple HTML

All Web pages require a fundamental set of HTML codes. Listing 17.2 shows the minimal HTML code needed to display a Web page.

Listing 17.2. A General HTML Format
<html>
  <!-- This is a comment -->
  <head>
    <title>The window's title bar text goes here</title>
  </head>
  <body>
    <!-- The bulk of the Web page text, graphics, and HTML
         code goes here -->
  </body>
</html>

The commands between the angled brackets are the HTML command tags that format the page's data and instruct the browser on how to display the page. Most HTML tags appear in pairs, such as <body> and </body>. The closing tag, indicated with a slash (/), tells the browser where the tag command ends.

You have the freedom to use as much whitespace as needed to make your HTML code ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Absolute Beginner's Guide to Programming, Second Edition

Absolute Beginner's Guide to Programming, Second Edition

Greg Perry

Publisher Resources

ISBN: 0789729059Purchase book