| یک پاراگراف ساده | <p> | <p>I'm a paragraph</p>
<p>I'm another paragraph</p> |
| یک نقل قول گسترده | <blockquote> | They said:
<blockquote>The blockquote element indicates
an extended quotation.</blockquote> |
| اطلاعات تکمیلی | <details> | <details>
<summary>HTML Cheat Sheet</summary>
<p>Inline elements</p>
<p>Block elements</p>
</details> |
| یک لیست نامرتب | <ul> | <ul>
<li>I'm an item</li>
<li>I'm another item</li>
</ul> |
| یک لیست مرتب | <ol> | <ol>
<li>I'm the first item</li>
<li>I'm the second item</li>
</ol> |
| یک فهرست تعریفی | <dl> | <dl>
<dt>A Term</dt>
<dd>Definition of a term</dd>
<dt>Another Term</dt>
<dd>Definition of another term</dd>
</dl> |
| یک خطکش افقی | <hr> | before<hr />after |
| عنوان متن | <h1>-<h6> | <h1> This is Heading 1 </h1>
<h2> This is Heading 2 </h2>
<h3> This is Heading 3 </h3>
<h4> This is Heading 4 </h4>
<h5> This is Heading 5 </h5>
<h6> This is Heading 6 </h6> |