HTML paragraph

This example demonstrates:

Display paragraphs in an HTML document.

Example analysis:

##The paragraph is defined through the <p> tag.

Continuing Learning
||
<!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