Paragraphs:
(Optional)
•html does not recognize returns. To start a new paragraph you can
use the <p> tag
•write some text after the header tags in the body are and put a
<p> tag between paragraphs.
•The <p> tag needs a closing tag for Xhtml compliance </p>,
you can put it at the end of the paragraph. If you are using
styles you need a closing </p> tag. You can use styles to format
all paragraphs the same (font, color, size)
•another way to close a <p> tag is to put the ending tag
inside of it: <p />
•you can add in the align attribute to control
how the new paragraph aligns
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PONIES PONIES PONIES</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h1>Here Is My Pony</h1>
<h4 align="left">Isn't she lovely?</h4>
I like ponies. They are lots of fun and furry. Sometimes I like to ride them.
Galloping is my favorite. Very fast. I like ponies. They are lots of fun and
furry. Sometimes I like to ride them. Galloping is my favorite. Very fast. I
like ponies. They are lots of fun and furry. Sometimes I like to ride them.
Galloping is my favorite. Very fast.
<p />
Grooming is also fun, but lots of work. And I get tired easily combing their
hair.
<p align="right" />
When I rode my horse the other day, we jumped over these really big logs and
a stream.<br />
It was so fun. I think the horse liked it too. Anyway, we rode all day, me and
Cinnamon.<br />It was lovely. She is the best horse ever.
</body>
</html>