Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <title>HTML Alt Text Example</title> </head> <body> <h2>Image with Alt Text</h2> <img src="/pix/samples/20s.jpg" alt="A small ginger kitten looking curious" width="200" height="118"> <p>The above image has an alt text description: "A small ginger kitten looking curious". Since the image exists, the browser will display the image instead of the description.</p> </body> </html>