Приглашаем посетить
Добычин (dobychin.lit-info.ru)

Workshop

Previous Page
Table of Contents
Next Page

Workshop

The workshop contains quiz questions and activities to help you solidify your understanding of the material covered. Try to answer all questions before looking at the "Answers" section that follows.

Quiz

1:

Create a style sheet to specify 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 corporate.css, how would you apply it to a web page named intro.html?

Answers

A1:

h1 { font:30pt blue Arial; }
body { font: 10pt blue; }

A2:

Put the following tag between the <head> and </head> tags of the intro.html document:

<link rel="stylesheet" type="text/css" href="corporate.css" />


Previous Page
Table of Contents
Next Page