229,155 views
25 votes
25 votes
LIMITED EDITION QUESTION!!

will be eligible for crown.
Write a tag that links to "shoe.html" and opens it in a new window.
this question will only be up for 7 minutes, GO!

User Rhaskett
by
2.6k points

2 Answers

18 votes
18 votes

Answer:

<a href="shoe.html" target="_blank">Link to shoe.html</a>

Step-by-step explanation:

To create a link that opens a webpage in a new window, you can use the target attribute in the a (anchor) tag and set its value to "_blank". Here is an example of a tag that links to "shoe.html" and opens it in a new window:

<a href="shoe.html" target="_blank">Link to shoe.html</a>

This tag will create a clickable link with the text "Link to shoe.html". When the user clicks on the link, it will open the "shoe.html" webpage in a new window.

19 votes
19 votes

<a href="shoe.html" target="_blank">Click here to view shoe</a>

User Silentsurfer
by
3.1k points