link as new tab
Page 1 of 1
link as new tab
hei everyone.i am programming my first website and i am all excited! there s one thing i havent found a guide to in the html tutorial and that is:
HOW TO MAKE A LINK THAT AUTOMATICALLY OPENS AS A NEW TAB
(instead of loading it in the same window)
How do I do this?
Thank you for your answer
greet Jo
Re: link as new tab
agreed with CubeSquare,i.e code will look alike
- Code: Select all
<a href="path_of_file" target="_blank"> The Anchor Text </a>
Re: link as new tab
hei thanks. that works well!maybe you can also tell me why it doesnt show a picture where i want it but rather an empty white frame?
code for picture looks as follows:
<img scr="david.jpg" alt="David" />
thanks a lot. this is great.
jo
Re: link as new tab
1.the image named david.jpg should be in same folder of html file.2.Its src not scr
your code
<img scr="david.jpg" alt="David" />
actual code should be
<img src="david.jpg" alt="David" />
Re: link as new tab
ja takk, jetzt funktioniert es.gruss
Jo
Page 1 of 1