Preserved Topic: It indexed again... (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Santa Clara, CA, USA |
posted 09-04-2002 19:13
I don't know if the problem I'm having is w/ my HTML or some bug in my style sheet. So here's a link to both and then the code: code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 09-04-2002 19:35
You need to close your tags: code: p><b>Observations:</b><br>
|
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 09-04-2002 19:45
Put the </ol> *before* the </p> tag in the example emps gave. code: <p><b>Observations:</b></p>
|
Paranoid (IV) Inmate From: Santa Clara, CA, USA |
posted 09-04-2002 20:07
Arg. How is it that I always do that? I checked the tags and *as usual* missed that one. It's like I'm jinxed or something lol. Maybe I should change my username tehe. |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 09-04-2002 22:10
Don't be hard on yourself, i hate it when people do that =) |
Paranoid (IV) Inmate From: Santa Clara, CA, USA |
posted 09-04-2002 22:48
^_^ Thanks Slime. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 09-05-2002 01:22
Oooops - ye put it in the wrong place. Technicaly those <P> tags just aren't required - you could just do: code: <b>Observations:</b><br />
|
Paranoid (IV) Inmate From: Santa Clara, CA, USA |
posted 09-05-2002 17:39
Hm...I thought when I read the stuff at http://www.w3schools.com it said you had to put everything in a <p> just about? ::a lil' confused:: LOL. Maybe that was something I read somewhere else or made up in my head. |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 09-05-2002 17:46
Well, that's sorta true, but not really. What they probably meant by that is you can't have text just floating around inside the <body> or a <div> tag. It needs to be inside something like a <p> tag, or an <li> tag, or a <td> tag, or perhaps some other things. |
Paranoid (IV) Inmate From: Santa Clara, CA, USA |
posted 09-05-2002 18:04
Hm. I'll have to take a closer look myself because I know me. When I learn stuff the wrong way, it is VERY VERY hard for me to break the habit I form (like all the bad habits my HTML teacher taught my whole class to begin with, arg) so I want to do this all right the first or second time, not the tenth hehe or it may never stick correctly in my head. |