HTML/CSS/Basic Tags/p

Материал из Web эксперт
Перейти к: навигация, поиск

"p" creates a paragraph

   <source lang="html4strict">
   

<html> <head> <title>p element example</title> </head> <body>

This is the first paragraph.

This is the second paragraph.

This is the third paragraph.

This is the third paragraph align left.

This is the third paragraph align right.

</body> </html>

     </source>