Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The title Property</h2> <p><abbr id="myAbbr" title="World Health Organization">WHO</abbr> was founded in 1948.</p> <p>The title of the abbr element is:</p> <p id="demo"></p> <script> const element = document.getElementById("myAbbr"); document.getElementById("demo").innerHTML = element.title; </script> </body> </html>