<class home>  <html part II>   <back   next>

html continued

Targeting:

lets you open a link in a particular window
in the <a href> tag type:
<a href="url or link"> target="title of window"
>label</a>
note: you can use the target value of _blank for new window


example>>>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<title>Pony Pony Pony</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<a href="http://www.larabank.com/class/html2/example2/pony2.html"
target="Pony Test">
pony 1</a>
<br />
<a href="http://www.larabank.com/class/html2/example2/pony2.html" target="_blank">pony 2</a>

</body>
</html>