Answers for "add title to html page"

2

title in html

<html>
  <head>
    <title>This is title in HTML</title>
  </head>
  </html>
Posted by: Guest on March-09-2022
0

add title attribute

<html>
    <head>
    </head>
    <body>
        <a href="google.com" title="Click to go to google page">
            Hover to understand
        </a>
    </body>
<html>
Posted by: Guest on January-29-2022

Browse Popular Code Answers by Language