Example of opening linking in another browser window - HTML CSS HTML

HTML CSS examples for HTML:Anchor Link

Description

Example of opening linking in another browser window

Demo Code

ResultView the demo in separate 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>

Related Tutorials