How to Link to HTML Options
The HTML hyperlink code includes the option to choose a target for the opened Web page. You can open a new window or browser tab when the user clicks a link or use the "target" option to open the page in a separate frame, if your site is set up with frames. You can use the "target" option in any of your HTML hyperlinks.
Instructions
-
-
1
Right-click the HTML file you want to edit and click "Open With." Click the sub-menu's HTML editor you want to use to edit the hyperlinks.
-
2
Scroll down the page to the hyperlink you want to edit. The following code is an example of HTML hyperlink code:
<a href="page.asp">Click here</a>
-
-
3
Add the option to the hyperlink tag. The following code opens a new browser tab when the user clicks a link:
target="_blank"
Notice the underscore prefix. All target options begin with an underscore prefix.
-
1