Insert a paragraph


In Notepad, open index.html.

Below the heading, insert a paragraph:






Dogs Home Page

These are my favorite breeds of dog:


Save index.html.


Reload index.html in the browser.

It should look like this:

In Notepad, open format.css.


Add formatting for the

(paragraph) tag:

h1 {
font-family: verdana,helvetica,sans serif;
font-weight: bold;
font-size:16pt;
}

p {
font-family: arial,helvetica,sans serif;
font-size: 10pt;
}

Save format.css.


Reload index.html in the browser.

The paragraph should be smaller, and in the Arial font:



Web Layout HTML & CSS