HTML CSS examples for HTML:Anchor Link
Example of opening linking in another browser window
<!DOCTYPE html> <html lang="en"> <head> <title>Example of linking images</title> </head> <!--from ww w . j a v a 2 s .c om--> <body> <p><a href="http://java2s.com/" target="_blank">java2s.com</a> This is a link to a website.</p> </body> </html>