Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 03-18-2006, 04:21 AM   #1 (permalink)
 
True Techie

Join Date: Dec 2004

Posts: 149

gamerunknown

Send a message via AIM to gamerunknown Send a message via Yahoo to gamerunknown
Default HTML problem...

I know may not be a real programming language, but it is listed in description.

Either my table or my link is eating up all the other script on the page >_<.
__________________
-gamerunknown-
Ignotum Per Ignotus
gamerunknown is offline  
Old 03-18-2006, 04:26 AM   #2 (permalink)
 
Super Techie

Join Date: Aug 2003

Posts: 299

Shannon

Send a message via AIM to Shannon Send a message via Yahoo to Shannon
Default

what's the page you're having trouble with? I don't see a link anywhere.
__________________


prettygeek.com
Windows Desktop: AMD Athlon 64 3200+ | ECS K8 nForce4-A754 (random) | 2x 512mb Corsair DDR RAM | Excalibur Radeon X700 Pro | 1x 160gb, 1x 200gb, 2x 250gb, 1x 400gb, 1x500gb | Windows XP Home SP2 |
ViewSonic 20.1\" VX2025wm Widescreen Display
Notebook: Compaq Presario Notebook | AMD Turion 64 ML-32 | 512MB RAM | DVD�RW/CD-RW | 80gb | 14.1\" widescreen | Windows XP Home SP2 |
Pink Supergirl Linux Box
Shannon is offline  
Old 03-18-2006, 04:29 AM   #3 (permalink)
 
True Techie

Join Date: Dec 2004

Posts: 149

gamerunknown

Send a message via AIM to gamerunknown Send a message via Yahoo to gamerunknown
Default

It's kind of embarrassing... It is on a HTML learning programme, so I was messing around with it =\. What it looks like
|
V
<html>
<body bgcolor="red">


  1. list
  2. list
  3. list
</p>



<big>big</big>

small

bold

italics

this is<sub>subscript</sub>

this is<sup>superscript</sup>

this is a <h6>heading</h6>
</p>



<pre> P R E</pre>
</p>


<a href="www.gamefaqs.com"> www.gamefaqs.com<a/>
<table border="9" cellpadding="3">
<td>PHONE MACALLA</td>
<td>AT 9:35</td>
<td></td>

<address align="right">address</address>
</p>
</body>
</html>
__________________
-gamerunknown-
Ignotum Per Ignotus
gamerunknown is offline  
Old 03-18-2006, 05:05 AM   #4 (permalink)
RockyZ's Avatar
 
Ultra Techie

Join Date: Oct 2005

Posts: 902

RockyZ is on a distinguished road

Send a message via AIM to RockyZ
Default

My suggestion about HTML is read a short book about it then throw away the book. Open up frontpage and you probably won't ever need HTML knowledge besides the simple <center> tags.
__________________

e6300@2.8GHZ
G. Skill 4GB(2x2GB) DDR800
eVGA 8800GTS 320MB
super pi: 1m=20s
RockyZ is offline  
Old 03-18-2006, 11:44 AM   #5 (permalink)
 
Ultra Techie

Join Date: Oct 2003

Posts: 544

fitzjj

Default

Quote:
Originally posted by RockyZ
My suggestion about HTML is read a short book about it then throw away the book. Open up frontpage and you probably won't ever need HTML knowledge besides the simple <center> tags.
Cover your ears and eyes DON'T listent to that advice.....!!!... well you can listen to the read a book bit if you like!

Instead fire up your web browser find a webpage and save it to your computer. Then open the .htm/.html file with notepad and have a play around - open the file with your web browser and see what changes you have made. Don't start with an overly complicated web site and preferably one coded in just html.

A basic structure for a web page goes:

Code:
<html>
   <head>
      <title>The Title</title>
   </head>
 
   <body>

      

   </body>
</html>
The <head> section contains things that dont actually appear in on the page, such as the title, any meta tags, javascript functions etc... When starthing out you probably wont put much here.

The <body> section contains the main body of the page, i.e. all the text, images etc...


But really the best way to learn HTML is to go view>source on various web pages and see if you can figure out what each part of the html is doing to the page and what it's purpose is.
fitzjj is offline  
Old 03-19-2006, 06:27 AM   #6 (permalink)
 
Super Techie

Join Date: Aug 2003

Posts: 299

Shannon

Send a message via AIM to Shannon Send a message via Yahoo to Shannon
Default

just read up on the basics. try http://www.w3schools.com

I'm not sure what you want it to look like, but on this line;[list=1]
the quote isn't closed. it should be like[list=1]

that's probably what you think is "eating your code".
also, your link is wrong. here is a proper link;
gamefaqs.com

as for your table, I'm not sure if this is how you wanted it to look but you were missing a few tags. this is an actual table, though not a particularly pretty one.
<table border="9" cellpadding="3">
<tr>
<td>PHONE MACALLA</td>
</tr>
<tr>
<td>AT 9:35</td>
</tr>
</table>

don't use the pre tag. I'm pretty sure it's deprecated, I don't think it's even supported anymore. I'm not sure about the address tag.
__________________


prettygeek.com
Windows Desktop: AMD Athlon 64 3200+ | ECS K8 nForce4-A754 (random) | 2x 512mb Corsair DDR RAM | Excalibur Radeon X700 Pro | 1x 160gb, 1x 200gb, 2x 250gb, 1x 400gb, 1x500gb | Windows XP Home SP2 |
ViewSonic 20.1\" VX2025wm Widescreen Display
Notebook: Compaq Presario Notebook | AMD Turion 64 ML-32 | 512MB RAM | DVD�RW/CD-RW | 80gb | 14.1\" widescreen | Windows XP Home SP2 |
Pink Supergirl Linux Box
Shannon is offline  
Old 03-21-2006, 09:54 PM   #7 (permalink)
 
Super Techie

Join Date: May 2005

Posts: 479

furtivefelon

Default

frontpage sucks.. i like dreamweaver for complex layouts.. and dreamweaver has a superb CSS support that takes all the pain out of it..
__________________
lisp hacker
running: FreeBSD 5.4 - still learning
develop with: SBCL + emacs for lisp, Anjuta IDE +gcc for c, SPE for python..
browse with: opera
furtivefelon is offline  
Old 03-22-2006, 05:31 AM   #8 (permalink)
 
True Techie

Join Date: Dec 2004

Posts: 149

gamerunknown

Send a message via AIM to gamerunknown Send a message via Yahoo to gamerunknown
Default

uuh, thanks shannon. I was using various techniques for the table, and I usually do view sources of websites.

I finished up on the w3 schools thingy, which I was using in the first place, but I just started a new HTML document =P.

Are there any other free tutorials I should look out for?
__________________
-gamerunknown-
Ignotum Per Ignotus
gamerunknown is offline  
Old 03-25-2006, 04:54 PM   #9 (permalink)
 
Newb Techie

Join Date: Jan 2006

Posts: 39

smartydebater

Default

Yeah, a the site where I first learned Html, CSS, and Javascript is Davesite.com . It has a lot of annoying adds, but the tutorials are great.
smartydebater is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On