Forum Moderators: open
Is there a software that does the validating process for you?
Or is the best option to get a web developer to do it for me?
I have a network of websites and as you guessed I did not validate...so Im in trouble now. I used Front Page 2003 to do all my websites and they are in both HTML and ASP pages. Any suggesstions?
NB
Is there a software that does the validating process for you?
Or is the best option to get a web developer to do it for me?
Unless the page/site was a complete mash of hacks and outmoded concepts (that ideally would require a good head scratch and a rewrite) then a web developer would still run it through a validator (if you were implying otherwise). A validator doesn't necessarily tell you how to fix the problem - it might give you an idea as to what the problem is (ie. "tag <#*$!> isn't allowed here"), you still need to know how to fix it in a standards compliant/accessible way (and why) - although HTML Tidy can try and fix some (basic) things for you.
I've been using CSE HTML Validator V6.5 Pro recently (not free, this version is a few years old, latest is V8) - the 'Pro' versions can batch process an entire site and produces, nothing short of, a mass of information (if you let it)! Must say, I'm very impressed! Would be great to hear opinions from others who have used this and/or any other 'batch capable'/verbose validators. (I've not found any mention of 'CSE' in these forums for a couple of years...?)
It has hundreds of other time-saving features, some I've never even used, including auto completion and tag completion, tag insight, function completion, color coding options, you can make your own set of macro key functions for favorite tags, create custom menus in the program, save templates, it's endless. Homesite is the best hand coding proggie I've found.
It can validate one document, all open docs, or hundreds in a directory, and has been 99% accurate with the W3C validator - but if your question is will the validation function correct invalid documents for you, the answer is no. Like any other validator it only points to the line numbers of the errors. The Code Sweepers will make some corrections for you, format your code, and other cool fix-ups.
I think several WebmasterWorld threads over the last year or two have listed the vast majority of what they were, and how to fix them. Once you have learnt those 20 fixes, you too will be able to fix 99% of all the errors that you will ever see.
page.html?ID=7 = page7.html pageX.html
Written through a .htaccess
Unsure of how important ALT tags are for images unless images are your business. If you are selling insurance I dont know how important they are.
Comments anyone?
for example, i've done this loads if times... if you forget to close a <span>, and then follow it with <p>'s <div>'s <h2>'s, or whatever, then it will chuck up loads of errors because you're not allowed to put block-level elements in a <span>.
by closing the span you'll fix all the other errors below it.