HTML CSS examples for HTML:Image
Example of linking images
<!DOCTYPE html> <html lang="en"> <head> <title>Example of linking images</title> </head> <!--from ww w . j a v a2 s. com--> <body> <p><a href="http://java2s.com/resources/d.png"><img src="http://java2s.com/resources/d.png" alt="an image"></a></p> </body> </html>