HTML/CSS/Basic Tags/p

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

"p" creates a paragraph

    
<html>
<head>
<title>p element example</title>
</head>
<body>
    <p align="center">This is the first paragraph.</p>
    <p align="center">This is the second paragraph.</p>
    <p align="center">This is the third paragraph.</p>
    <p align="left">This is the third paragraph align left.</p>
    <p align="right">This is the third paragraph align right.</p>
</body>
</html>