Everything to know about formatting a post

<div>

Back


<div>
  This is a basic container.
</div>
This is a basic container.

align


<div align="center">This text is centered.</div>
<div align="right">This text is aligned right.</div>
<div align="left">This text is aligned left.</div>
This text is centered.
This text is aligned right.
This text is aligned left.

dir


<div dir="rtl">
  هذا نص عربي من ترجمة جوجل. #Translation: "This is Arabic text from Google Translate"
</div>
هذا نص عربي من ترجمة جوجل.

<div dir="rtl" align="center">
  Right-to-left text, centered.
</div>
Right-to-left text, centered.

<div> with other HTML

<div>
  <strong>Bold text</strong> and <em>italic text</em> inside a div.
</div>
Bold text and italic text inside a div.

<div>
  <img src="https://media.tenor.com/x8v1oNUOmg4AAAAM/rickroll-roll.gif" alt="Example Image">
  <p>Image inside a div</p>
</div>

---

Example Image

Image inside a div


<div>
  Check out <a href="https://www.example.com">this website</a>.
</div>
Check out this website.

<div>
  <h3>Section Title</h3>
  <p>This paragraph is grouped inside a div section.</p>
</div>

Section Title

This paragraph is grouped inside a div section.


<div>
  <table border="1">
    <tr><th>Item</th><th>Price</th></tr>
    <tr><td>Apple</td><td>$1</td></tr>
  </table>
</div>

ItemPrice
Apple$1
2 Likes