Home
HTML
HTML Attributes
Example 8: HTML Attributes
Run ❯❯
<!DOCTYPE html> <html lang="en-US"> <head> <title>alt Attribute Example</title> </head> <body> <h1>Image with alt Attributes</h1> <p>Alt attribute is specified to "A Garden".</p> <img src="garden.jpg" alt="A Garden" width="300" height="300"> </body> </html>