Home
HTML
HTML Attributes
Example 11: HTML Attributes
Run ❯❯
<!DOCTYPE html> <html lang="en-US"> <head> <title>Title attribute</title> </head> <body> <h1>The title attribute with Space</h1> <p>There is no quotation around the value of title attribute.</p> <p title=Desktop Computer>Mouse over the text to see the tooltip.</p> </body> </html>