HTML paragraphLOGIN

HTML paragraph

This example demonstrates:

#How the text in the paragraph element is displayed by the browser.

##Example analysis:

##<p>This is a paragraph</p>

<p>This is another paragraph</p>

Note: 1. The browser will automatically add blank lines before and after the paragraph .

2.</p> is a block-level element.

Next Section

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(www.php.cn)</title> </head> <body> <p>这是一个段落。</p> <p>这是一个段落。</p> <p>这是一个段落。</p> </body> </html>
submitReset Code
ChapterCourseware