HTML/CSS/Basic Tags/p

Материал из Web эксперт
Версия от 08:17, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"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>