HTML CSS examples for HTML:Image
Example of HTML Images with alt message
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example of HTML Images</title> </head> <!-- w w w . j a va 2 s. co m--> <body> <div> <img src="http://java2s.com/resources/h.png" alt="message"> </div> </body> </html>