top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to add a tooltip to a paragraph in html?

+2 votes
692 views
How to add a tooltip to a paragraph in html?
posted Mar 21, 2017 by Rahul Lokhandwala

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Example for how to add tool tip in HTML:

<p><abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
<p title="Queryhome">QH.com</p>

Here title attribute is used for Tooltip

answer Mar 24, 2017 by Manikandan J
...