Difference between revisions of "Demo:TargetFrame"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
To use a separate target frame, one must use the '''<nowiki><html></nowiki>''' tag. | To use a separate target frame, one must use the '''<nowiki><html></nowiki>''' tag. | ||
A short example can be found here: | |||
<syntaxhighlight lang=HTML> | |||
<html> | |||
<a href="https://cnn.com" target="_blank">This is a News Webite</a> | |||
</html> | |||
</syntaxhighlight> | |||
Then, it will be displayed as follow: | |||
<html> | <html> | ||
<a href="https://cnn.com" target="_blank">This is a News Webite</a> | <a href="https://cnn.com" target="_blank">This is a News Webite</a> | ||
</html> | </html> |
Revision as of 03:19, 29 March 2022
To use a separate target frame, one must use the <html> tag. A short example can be found here:
<html>
<a href="https://cnn.com" target="_blank">This is a News Webite</a>
</html>
Then, it will be displayed as follow: <html> <a href="https://cnn.com" target="_blank">This is a News Webite</a> </html>