Example of HTML Images with alt message - HTML CSS HTML

HTML CSS examples for HTML:Image

Description

Example of HTML Images with alt message

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials