<p>say that I want to create a link to CC on a webpage ... it's simple enough html code, right?</p>
<p><a href="http://www.collegeconfidential.com/">College Confidential</a></p>
<p>But I want CC to open in a new, separate window. What is the additional code for that? </p>
<p>Is it JavaScript, something that I know nothing about, except how to copy and paste that code into my html code?</p>
<p>Just add target="blank", for example: </p>
<p><a href="http://www.collegeconfidential.com/" target="blank">College Confidential</a></p>
<p>Thanks, that is the simple solution that I am looking for, though the examples I saw on the net indicate that it should be:</p>
<p>target="_blank"</p>
<p>Eventually, I would like the new window to be slightly offset from the original, but your solution is definitely the best for now.</p>
<p>!!! Thanks !!!</p>
<p>"_blank" is the correct method, although technically either could be used.
If you want different heights/widths etc, you'll need javascript</p>
<p>you could also use target="top" too.. you can actually use anything. target="bubbletoes" should work too in most browsers, haha</p>