Core Attributes

ID
Title
Class
Style

Eg:

<p id="p1">Unique identification value for this tag, which can be retrieved using JavaScript</p>

<p title="text displays on mouse hover">Place the mouse over this text. You should see the Tooltip</p>

<p class="cssclassname">Using the class name mentioned, CSS styles can be applied for all match class name</p>

<p style="color:blue;">Using the style attribute, inline CSS styles can be applied for this tag</p>

<p dir="ltr">Text shown from Left to Right</p>

<p dir="rtl">Text shown from Right to Left</p>