First page Back Continue Last page Image
Where Does the Link Command Go
- <head>
- <title>Linking Style Document</title>
- <link rel="stylesheet" href="linking_1.css" type="text/css">
- </head>
- <body link="#ff0000"
- vlink=“red”
- alink=“green”>
- <cite>Linking Style Document</cite>
- <br /><br /><br />
- <h1>We should all get an "A" in this class :)</h1><br /><br />
- <a href="Linking2.html">Linking Style Page 2</a><br /><br />
- <a href="Linking3.html">Linking Style Page 3</a>
- </body>
- </html>
- The link command goes in the <head> section of your code, as shown here