• Check out the results of the Techtree Contest #19!
  • Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

Validation Failed - 143 Errors

Status
Not open for further replies.
Hey there.

I checked this site today for validation of XHMTL 1 Strict and/or being a valid HTML 4.01 Strict and it failed with 143 errors.

Did you ever check if your code is a standart code?

You have massive small mistakes.

So will you never use any strict version of (X)HTML so your code will never look at all browsers the same?
 
Even X/HTML that passes the W3C validator is NOT guaranteed to look the same in all browsers. That said, it would be nice for this site to have compliant HTML, but it's not a huge priority.
 
Even X/HTML that passes the W3C validator is NOT guaranteed to look the same in all browsers.
It's usually LESS likely to display properly if you go for 100% standards compliance.

That said, it would be nice for this site to have compliant HTML, but it's not a huge priority.
I would say it's not priority at all. Making a site display properly using standards-compliant (x)HTML is hard enough from scratch, let alone modifying something as complex as VB to serve standards complaint (x)HTML.
 
Basicly its stuff like you did not used "" for proberties, forgetting alt(ernatives) for symbols(much), FORGETTING /> and not to use > (its XHTML, not HTML evenmore!), CLOSED divs which are not even open anymore, attributes which are not XHTML anymore (You can't use them) and alot more errors.

All together I think you might fix your code a bit.

I mean Ralle is trying to get a

XHTML 1.0 Transitional
iso-8859-1

document but all he makes is giving XHTML no chance of being a valid XHTML 1.

Basicly, a strict XHTML document does require this changes from Strict HTML 4.01:
-Give your images an alt(ernate)-tag,
-give empty elements (you know what I mean, br's(linebreaks), etc)" />" or "/>" (" />" is for older brrowsers which also should act like we want when you use " />" , but "/>" is also a valid form of closing empty tags
-Use block elements for the side, inline projects for the things inside!
( Icons are INLINE elements, like a's etc)

-Don't forget that blockqoutes ARE NOT MADE for putting a text directly into them. You should create a "<p>" for creating a text line.

Edit: Oh and btw, if you need help, I will help you. Greets
 
It's usually LESS likely to display properly if you go for 100% standards compliance.
I have experienced otherwise. Although, there isn't a huge distinction between decently written HTML that doesn't validate and decently written HTML that does.

I would say it's not priority at all. Making a site display properly using standards-compliant (x)HTML is hard enough from scratch, let alone modifying something as complex as VB to serve standards complaint (x)HTML.
Well, for this site, it's really low priority. Namely, anything else of any importance should happen instead. But for a new site starting out with a freshly fabricated design, it's certainly reasonable to write compliant X/HTML.
 
Basicly its stuff like you did not used "" for proberties, forgetting alt(ernatives) for symbols(much), FORGETTING /> and not to use > (its XHTML, not HTML evenmore!), CLOSED divs which are not even open anymore, attributes which are not XHTML anymore (You can't use them) and alot more errors.

So basically, the boring stuff?

Yeah, I think that's at the lowest priority possible at our current list of problems. I mean, we still have that massive fracking backlog of maps we need to get sorted out and all
 
Status
Not open for further replies.
Back
Top