insideorkut.com

What's the best free website hosting service apart from iPage?

Click Here To View All Answers...


Question I have... What's the best free website hosting service apart from iPage? Hoping for any response. My 2nd question... I'd really appreciate it if anyone could spot the 4 errors in this html page. If I insert 3 end table tags (together) </table> at the end of the page, I get correct validation (?) but I think there must be a better way to resolve the problem? Below are (I hope) the main problem areas of the code. Thanks..

Line 1082, column 6: end tag for "TABLE" omitted, but it's declaration does not permit this (explain...)..

</body>.

^.

Line 996, column 1: start tag was here (explain...)..

<table border=0 width="100%">.

^.

Line 1082, column 6: end tag for "TABLE" omitted, but it's declaration does not permit this (explain...)..

</body>.

^.

Line 684, column 1: start tag was here (explain...)..

<TABLE BORDER=0 WIDTH="100%" ALIGN=RIGHT>.

^.

673: </p>.

674:.

675: <p>.

676: <INPUT type="submit">.

677: <p></p>.

678:.

679: <input type=reset value=Clear>.

680: </form>.

681:.

682: <hr width="70%">.

683:.

684: <TABLE BORDER=0 WIDTH="100%" ALIGN=RIGHT>.

685:.

686: <TR>.

687: <TD ALIGN=RIGHT>.

923: <table border=0 width="100%" CELLSPACING=6>.

924: <tr>.

925: <td align=center> <h3> 2 MONTH COURSE: </h3>.

926: <tr>.

927: <td align=center> Converstaion Course: <strong> 98 euros </strong> (2 classes weekly).

928: <tr>.

929: <td align=center> Normal Course: <strong>125 euros </strong> (2 classes weekly).

930: <tr>.

931: <td align=center> Normal Course + 1 conversation class weekly: <strong>149 euros </strong>.

932: <tr>.

933: <td align=center> Normal Course + 2 conversation classes weekly: <strong>169,50 euros </strong>.

934: <tr>.

935: <td align=center> <strong>Private Classes: Consult secretary </strong>.

936:.

937: <p> </p>.

938:.

939: <tr>.

940: <td>.

941: <tr>.

942: <td>.

943: <tr>.

944: <td align=center> <h3> 1 MONTH COURSE: </h3>.

945: <tr>.

946: <td align=center> Converstaion Course: <strong> 54 euros </strong> (2 classes weekly).

947: <tr>.

948: <td align=center> Normal Course: <strong>69 euros </strong> (2 classes weekly).

949: <tr>.

950: <td align=center> Normal Course + 1 conversation class weekly: <strong>82,50 euros </strong>.

951: <tr>.

952: <td align=center> Normal Course + 2 conversation classes weekly: <strong>93 euros </strong>.

953: <tr>.

954: <td align=center> <strong>Private Classes: Consult secretary </strong>.

955: </tr>.

956: </table>.

957:.

958: <p> </p>.

959: <table border=0 width="100%">.

960: <tr>.

961:.

962: <td align=center> <A NAME="Work"</A><h3> Work/Study Experience </h3>.

963:.

964: <tr>.

965: <td align=left> We have Work/Study Experience Programmes in Ireland, England, Germany and.

966: USA. For more information and free magazine, please phone 93 2052264.

967:.

968: </tr>.

969:.

970: </table>.

971: <table border=0 width="100%">.

972: <tr>.

973:.

974: <td align=center> <A NAME="Conversation"</A><h3> Conversation Classes </h3>.

975:.

976: <tr>.

977: <td align=left> We offer Conversation Classes in small groups, with Native Teachers. The <a href="#CLASS">class times</a>.

978: are morning and evening.<br>.

979: Price for course: 54 euros for 1 month..

980: For more information, please call the secretary: Tel. 93 2052264.

981:.

982: </tr>.

983: </table>.

984: <table border=0 width="100%">.

985: <tr>.

986:.

987: <td align=center> <A NAME="Private"</A><h3> Private Classes </h3>.

988:.

989: <tr>.

990: <td align=left> We offer private classes with Native Teachers to meet the individual needs of each student..

991: Classes given in our school or in student's home or office. Prices: Consult secretary.

992:.

993: </tr>.

994: </table>.

995:.

996: <table border=0 width="100%">.

997: <tr>.

998: <td align=center> <A NAME="Business"</A><h3> Business English Classes </h3>.

999: <tr>.

1000:.

1001:.

1002: <td ALIGN=LEFT>.

1060: <TABLE width="400" border="6">.

1061: <tr>.

1062: <TD align="center">.

1063:.

1064: <TABLE width="300" border="2">.

1065: <tr>.

1066: <TD align="center">.

1067:.

1068: test.

1069:.

1070: </TD>.

1071:.

1072: </TABLE>.

1073:.

1074: </TD>.

1075: </tr>.

1076:.

1077: </table>.

1078:.

1079:.

1080:.

1081:.

1082: </body>.

1083:.

1084: </html>..

Comments (6)

That's a good question. I'm not sure what is the answer to your question. I'll do some investigation and get back to you if I bump into an answer. You should email the people at iPage as they probably could give you help..

Comment #1

You are missing </td> and </tr> all over the place. The fact that you got so few errors is probably because you confused hell out of the validator, as you would with most browsers. If you have more than one <body>...</body> that would also not allow correct validation..

That code is not even cles to be valid. End yur tags properly and try the validator again, it will probably Understand enough to give you useful errors..

The code has to at least resemble something valid before you acn expect the validator to help..

Cd&..

Comment #2

It's all too confusing for me..

With all of those line numbers I can not replicate the.

Table structure to visually see how your tables are nested..

And I easily lose track/count of which tables have been opened and closed..

What I can see is that you are opening numerous <TR>'s.

Without ever closing them. To validate properly, you.

Must.

Close all tags in the reverse order you have.

Opened them..

Also, here you have opened a <HR> without closing it:.

682: <hr width="70%">.

Which is immediately prior to your error report:.

Line 684, column 1: start tag was here (explain...)..

<TABLE BORDER=0 WIDTH="100%" ALIGN=RIGHT>.

Please note:.

I have found when debugging validation.

Errors. That the line number the error is thrown for is not.

Necassarily the line the error is on. Generally, the error is.

The line immediately prior. Whereas, when debugging javascript.

Errors, the error is the line immediately following the line number.

The error indicates..

Try closing all of your tags and see if that doesn't help..

Also, using the find feature of Notepad. Count the <TABLE>'s.

You have opened, and then count the number of </TABLE>'s.

You have closed, to insure they are opened/closed properly..

.....Willy..

Comment #3

Whoa!.

As said, you need to nest the elements, and close things in the reverse order to opening them..

Most Basic:.

<table>.

<tr> <td> .. </td> </tr>.

</table>.

Several cells in a row:.

<table>.

<tr> <td> .. </td> <td> .. </td> </tr>.

</table>.

Several rows, each with several cells in each row:.

<table>.

<tr> <td> .. </td> <td> .. </td> </tr>.

<tr> <td> .. </td> <td> .. </td> </tr>.

</table>.

The .. is where the content for the viewer goes...

Comment #4

Also, here you have opened a <HR> without closing it:.

682: <hr width="70%">.

Which is immediately prior to your error report:.

Line 684, column 1: start tag was here (explain...)..

Umm,.

<hr>.

Is a.

Horizontal rule.

(line) and does not need a closing tag (in HTML code)..

The error message (refer to post #1 in this thread) is actually saying that the.

</table>.

Tag is missing from line.

1082.

And that the opening.

<table>.

Tag that it is trying to match with was on line.

684.

Of the code...

Comment #5

Great! Finally cracked it. Actually it seems the <hr> tag should not be closed. But I closed all the <td> and <tr> ones, and I only need one closing table tag at the end, so w3.org must be happy with me now! Thanks...

Comment #6

Giz;.

I disagree. The.

<HR>.

Needs to be closed to validate..

Much the same as the.

<P>.

Tag needs to be closed..

Both of which are often ignored..

Then again, the o/p did not state which doctype he was.

Trying to validate..

....Willy..

Comment #7


This question was taken from a support group/message board and re-posted here so others can learn from it.