answersLogoWhite

0


Best Answer

You were very non-specific in your question, but if you are asking if you can click on one link but two pages come up, then yes that is possible. just add into the HTML code <a href="the exact web address of one of the sites you are linking to"><a href="exact web address of the second page you are wanting to link to">the text that you are wanting your site viewers to see</a>

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

If you're asking why doesn't this work:
Then it's because you can not link twice in HTML. In order to link to two or more pages you need to use Javascript. I've added two links for you to look through however I don't think that currently there is a script to do such a thing.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

There are a few ways to do this. One is to use the FRAMESET and FRAME tags, and the other is to use the IFRAME tag.

To set up frames, you need a frames document and the other pages you want to show. Here is a simple piece of code to do it, showing two pages on the one document.

<frameset rows="50%,50%">

<frame src="Firstpage.htm">

<frame src="Secondpage.htm">

</frameset>

An iframe puts a frame into the middle of your page and can show what you want. Not all browsers will support Iframes, so you need the piece of code on the second line.

<iframe src ="OtherPage.htm" width="100%" height="300">

<p>Your browser does not support iframes.</p>

</iframe>

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

Create a new Notepad page and add a Href tag to page 2.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you add a second page in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How can you add audio to HTML?

HTML does not add files. That is the use of SQL.


Is an interpreted scripting language that allows a programmer to add dynamic content and interactive elements to a Web page?

html


What is the function of the HTML in wed page?

The function of HTML is to create a layout in Web page. It constructs the design of the page smoothly.


Is HTML a url?

HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.HTML is a language used to create web pages. A URL is the address of the page or another internet resource. So HTML and URL are not the same kind of thing. It is the address of a html page that would be a URL, but not HTML itself.


Were is a HTML located on a page?

HTML is the page. It's the language used to write webpages. So, the answer to where it's located on the page is "Yes."

Related questions

Can you link an HTML page to your HTML page?

If it is someone else's page and they control the page, then only they can add a link on their page to your page. If you have two pages that you control, then you can link them to each other.


How can you add audio to HTML?

HTML does not add files. That is the use of SQL.


How can you add a webpage in an HTML?

To add a webpage within a particular area in an already existing HTML page, &lt;EMBED&gt; tag or &lt;IFRAME&gt; tag can be used. For example: &lt;EMBED SRC="http://www.domainname.com"&gt; will add the page (http://www.domainname.com) in the existing page. Or &lt;IFRAME SRC="http://www.domainname.com"&gt;&lt;/IFRAME&gt; will also add the page (http://www.domainname.com) in the existing page.


Where to place an HTML code on own website?

HTML makes the website, so it is right throughout the page. Effectively your website is built by HTML and then you add the actual content you want. You can't have a page without it.


What forms can you add to your website?

You can add any forms you want, you only need to type the form in the HTML of the page.


I want to add bootstrap carousel in my site is this possible link : hydrolife.pk?

Open the created HTML file with an HTML or text editor. There are two parts of code in the file, you have to copy the first part to your web page with the tag in front and insert the second part to your web page where you want the slider to display


How can you add music to a HTML web page when using notepad I want to know where to get some songs or music files from and where to go from there?

as far as i know you cant add music or moving images to a HTML format page for only java can hold moving images or sound. HTML is only a standard format page and can only hold still images or text


Is there any way to add Meta tags to a comicfury dot com site?

Go to your comic management page, click "Edit layout HTML" under "The webcomic homepage" and just add them to the HTML there.


How do you create a static page in HTML?

A static page can be easily created in HTML page. It just needs the static tags defined in HTML.


What does HTML page mean?

A HTML page is a web page that is created using Hyper Text Markup Language and is saved with a .html extension


What is the difference between an HTML page and a dhtml page?

DHTML combines HTML, JavaScript, the HTML DOM, and CSS.


Is it compulsory to write HTML tag in HTML file?

Yes. It tells the browser that it is a html page. A page should start and finish with a pair of html tags.