HTML CSS examples for HTML:Anchor Link
Example of HTML Links
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example of HTML Links</title> </head> <!--from w w w . j av a 2s . c om--> <body> <p><a href="http://www.java2s.com/">book2s</a></p> <p><a href="../images.jpg"><img src="../images/thumb.jpg" alt="message"></a></p> <p><a href="http://www.google.com/" target="_blank">Google Search</a></p> </body> </html>