Link to home
Start Free TrialLog in
Avatar of JenniferM
JenniferM

asked on

Bonus points for this 2-for1 (Told you I'd be back...)

I have created a backround in PaintPro, and want to use it for the backround for my web page. I have reset the colors to 256 (after creating) and saved to disk. The problem is the HTML to import. This cannot be saved as .gif in paint. So, here I am with a really cool backround, and cannot export.....I know that HTML <Backround> will only support .gif...so, do I convert, or is there a secret to making this work? (This is a really cool backround, so I am hoping SOMEONE can answer this....)
The second is a duh question, so I included it with the harder problem. How do I create multiple pages? For instance, I want to link my primary page to a second that has pictures, utilizing a "next" key of some sort.....for you web publishers-extrodinaire, this should be a no-brainer...
ALL POINTS GO TO THE ONE THAT CAN ***CLEARLY*** EXPLAIN BOTH!! GOOD LUCK!!!
Avatar of JenniferM
JenniferM

ASKER

Edited text of question
Adjusted points to 150
1)You could save it as a jpeg file & can have a samller gif version  link to it.

2) Put a hypertext link in your primary page to the second page which has pictures

 
I understand how to link pages, just not how to, I guess, create some sort of  a subfolder for subsequent pages. Is there a tag that I use on my notepad, under the info for the first page. Do I start a new <body> tag? I just do not understand how to create multiple pages.
For the first part of the question, I need clarification on how to convert it from a .bmp to a .jpeg or .gif
ASKER CERTIFIED SOLUTION
Avatar of 2718
2718

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Let me clarify, for I sometimes tend to overthink and not explain clearly. Say this format is my Notepad (where I create my HTML, I don't use FrontPage):
<HTML><TITLE>Sample page 1</TITLE><HEADING>Blah, Blah, Blah</HEADING>***<HREF="PAGE TWO">(????)***<BODY> More text, content of page</BODY>
</HTML>
 I need the language for the <HREF> on both sides. That is the basis of my question. And if "Sample Page one" is in index.htm,how do I create index.htm2 for the second page?
I am using WS_FTP for this....so if you are familiar with it, please enlighten me...
(P.S.I am sure that the <HREF> tag is NOT correct....)
 
Hopefully you now do not think that I have lost my mind and understand the simplicity of my request, ignoring however badly I asked the question. Please think "HTML 101" when you respond.
Thanks,
Jennifer
 
Jennifer,
  I salute you for not using Frontpage.  *smile**

Here's the html code you used for your example:
<HTML><TITLE>Sample page 1</TITLE><HEADING>Blah, Blah,
      Blah</HEADING>***<HREF="PAGE TWO">(????)***<BODY> More text, content of page</BODY>
      </HTML>

First off, you need to put your links INSIDE the body of your web page.

You state that ".... I need the language for the <HREF> on both sides. That is the basis of my question...."

Example follows.

And if "Sample Page one" is in index.htm,how do I create index.htm2 for the second page?

OK, I see a couple of different issues being mixed up here.
First off, your web server software (which I don't know what it is - but that doesn't matter) will take a certain html file with a special name (index.html is fairly common - obviously that is the case for you) and will display / load / send that page to any users who visit your site (it's like the default page shown to any web visitors.)

So I assume you currently have one html file named index.html (or index.htm - whether they end in .html or .htm usually makes no difference - I prefer .html)

DO NOT make a new file named index.htm2 - that will NOT work.
To "make" a new file just type away in notepad and then choose
SAVE AS under the FILE menu and give it its new name - you should name them anything you like with a .html extension.

Here's my example for you.

You have a file named  index.html
This is the contents of index.html, created with notepad.
(I'm just making all this up, hopefully you can see the
overall picture and apply to your situation.)

<html>
<body>
Welcome to Jennifer's web page !
Would you like to visit Fluffy's page ?
<a href=fluffy.html>Click here</a> to go to Fluffy's page.
Would you like to visit Fifi's page ?
<a href=fifi.html>Click here</a> to go to Fifi's page.
</body>
</html>

Now in the same directory that contains index.html you will have two more files created with notepad, one named fluffy.html and the other named fifi.html.

Contents of fifi.html

<html>
<body>
Hi, I'm Fifi. Welcome to my page.
Want to visit Jennifer ?
<a href=index.html>Click here</a> to visit Jennifer.
</body>
</html>

The basic html syntax for a link is
<a href=url> ... </a>

Where you replace url with the path to the html file you want to link to (if the file is in the same directory as the web page containing the link the url can be as simple as the name of the file being linked.)

And replace ... with whatever words you want to actually represent the link. Most browsers will display them in a different color.

I suggest you play around on your computer at home making the different files and linking one to another. You can open them up with the browser on your home computer and test the links - you don't need a web server to look at html files and test simple links. Assuming you create a file named fifi.html on and save it to c:/
you then open your browser and in the location window type
c:/ and hit return. All the files on c:/ should display on your browser. Click on fifi.html and then "test away".

I did it!!! Check out the site at:
 
http://home1.gte.net/clancy5/index.htm

The way you explained it made sense. Before I got the comment, I was killing myself trying to figure why my "index2.htm" had no content. The folder was in the directory, and I just needed to add it the the file path.

Thanks a million!!
Jennifer =)
I did it!!! Check out the site at:
 
http://home1.gte.net/clancy5/index.htm

The way you explained it made sense. Before I got the comment, I was killing myself trying to figure why my "index2.htm" had no content. The folder was in the directory, and I just needed to add it the the file path.

Thanks a million!!
Jennifer =)
P.S. Check out the bottom of pg1 of the site, I gave credit where credit was due....=)