Jump to content

Making in HTML 2 pages


silent tear

Recommended Posts

hey can someone tell me how i can make a "site" in HTML that has 2 pages and in one of the pages there has to be a picture that is a link to the other page? how can i make those to pages? i have to do it for a schoolproject, that's why i have to use HTML and not another thing.. can anyone help me?

Link to comment
Share on other sites

Open up notepad and save the file as page1.htmlMake a new document in notepad and save it as page2.htmlopen up page1.html in notepad and type

<html><body><a href="page2.html"><img src="your image" /></a></body></html>

save page1.htmlopen up page2.html in notepad and type

<html><body>This is page number 2!</body></html>

save page2.html

Link to comment
Share on other sites

It's a thing you don't need in the process of learning, but it's a good thing to do later on. validating your pages means for them to be properly coded. Doing so ensures they will work well in all browsers including future ones.I suggest you forget about it for now and think about it when you think you're ready.

Link to comment
Share on other sites

oke, i have to deal with it already eventough it wasn't the purpose.. my friend send me some HTML codes but it doesn't work in fire fox, so i had to change some codes so that i would work in internet explorer and in fire fox, that is what you mean something like that,right?

Link to comment
Share on other sites

oke, i have to deal with it already eventough it wasn't the purpose.. my friend send me some HTML codes but it doesn't work in fire fox, so i had to change some codes so that i would work in internet explorer and in fire fox, that is what you mean something like that,right?
Not exactly, but kind of. Let's just say that validation is the first step of solving incompatabilities.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...