PDA

View Full Version : Basic HTML trouble, need some help


DanTHEGREAT
11-24-2010, 06:41 PM
This is my current website, starting out with HTML (from scratch)

Just wanted to do a basic one take a look:
http://cplusplus.netai.net/

I currently have two buttons,

Home and Lessons

I want so that when the user the Lessons, it goes to a different page (lessons.php)
and I want different text but the same header. (I know I just have to copy header and make new text file) but is there a way where I can make and If statement like this:

If user clicks Lessons, Then
Go to Lessons.php.

Also!
how can I make it so that the text in the middle on the homepage has a box around it, sort of like a middle background.

And finally last question. Take a look at my Hovering button codes, how come they do not work when I go to the real website??
<center><a href="http://cplusplus.netai.net/" onmouseover="document.images['s1a'].src='http://cplusplus.netai.net/button1hover.png';" onmouseout="document.images['s1a'].src='http://cplusplus.netai.net/button1.png';"><img src="http://cplusplus.netai.net/button1hover.png" name="s1a" height="47" width="176" alt="" border="0"></a><a href="http://cplusplus.netai.net/" onmouseover="document.images['s1a'].src='http://cplusplus.netai.net/button2hover.png';" onmouseout="document.images['s1a'].src='http://cplusplus.netai.net/button2.png';"><img src="http://cplusplus.netai.net/button2hover.png" name="s1a" height="47" width="176" alt="" border="0"></a></center>

Thanks, would appreciate the help!

--------------- Added 1290648027 at 1290648027 ---------------

anyone??

--------------- Added 1290689876 at 1290689876 ---------------

bump? Anyone?

BirdOPrey5
11-25-2010, 10:47 PM
I don't know why you'd need an "IF" statement... first HTML is not a scripting language, there are no "IF" statements- that would be JavaScript or PHP.

If you want to bring someone to lesson.php when they click on the lesson image you'd put an <a href="..."> tag around the <img> tag of the lesson... something like:
<a href="lesson.php"><img src="lesson.gif" border="0" /></a>

This is very most basic of basic HTML- if you don't know this you really need to get a book or something and learn the basics before you start asking questions.

cincyforums
11-28-2010, 04:57 PM
You can use the div tags to create a box around certain text that you want to stand out from the rest of the home page.