Sams Teach Yourself HTML 4 in 24 Hours

Sams Teach Yourself HTML 4 in 24 Hours

By Dick Oliver

Workshop

Quiz

  1. Create a style sheet to specify half-inch margins, 30-point blue Arial headings, and all other text in double-spaced 10-point blue Times Roman (or the default browser font).
  2. If you saved the style sheet you made for question 1 as corporat.css, how would you apply it to a Web page named intro.htm?
  3. Write the HTML that makes Netscape Navigator 4 or Microsoft Internet Explorer 4 display the words What would you like to, starting exactly at the top-left corner of the browser window, and THROW TODAY? in large type exactly 80 pixels down and 20 pixels to the left of the corner.

Answers

  1. body {font: 10pt blue;
    line-height: 20pt;
    margin-left: 0.5in;
    margin-right: 0.5in;
    margin-top: 0.5in;
    margin-bottom: 0.5in}
    h1 {font: 30pt blue Arial}
    								
  2. Put the following tag between the <head> and </head> tags of the intro.htm document:
    <link rel="stylesheet" type="text/css" href="corporat.css" />
    
  3. <span style="position: absolute; left: 0px; top: 0px">
    
    What would you like to</span>
    <h1 style="position: absolute; left: 80px; top: 20px">
    THROW TODAY?</H1>
    								

Exercises

Share ThisShare This

Informit Network