Is there any tools for check html quality? [closed] - html

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I know about html, css validation and some rules in pagespeed about css performance.
Is there any all in one tool for checking?
May be it can check some best practice for html markup.

For HTML, consider using HTML Tidy

Use this Html Validator 0.8.5.8 with firefox .
https://addons.mozilla.org/en-US/firefox/addon/249
It will show error and will give best suggestion
And this CodeBurner for Firefox 1.0
https://addons.mozilla.org/en-US/firefox/addon/13048
And if you need software, then use this http://www.freehtmlvalidator.com/
And if you need online tool, then go for this http://www.onlinewebcheck.com/

Consider YSlow firefox extension from yahoo.

Web Page Analyzer
Google SpeedTracer
Safari/Webkit Web Inspector

Have a look at The W3C QA Toolbox (for Markup, Links, CSS validation) and the popular YSlow Firefox extension, PageSpeed (another Firefox extension) and SpeedTracer (sort of like YSlow!, but for Google Chrome) which are more performance oriented.

Related

How to spell check a website? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Ideally, content should be spell-checked before being marked up with HTML. Unfortunately that does not always happen.
Once the content is integrated with HTML, it's very difficult to run that through a spell checker, e.g. by pasting into MS Word. What strategy should I use to spell check a website?
I would recommend browser extension, this is easy install and work or user output content,
You can install Firefox Spell Checker extension.
I would say make a python script to take HTML in as a single text string and remove anything enclosed by <>. It wouldn't be perfect but you'd mostly have plaintext that can go into msword.
Using a ide like netbeans is usually the best way to recheck HTML code or spell check your code. What do you ise to develope your websites

how to check for html5/css3 compliant web pages [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
We are building web based application front end for a web based application using HTML5/CSS3/JQUERY. We are using firebug at the moment which is not helping us good. I would like to know how can i ensure the pages are html5/css3 compliant. I am also looking for a plugin like firebug, which will help my team to make sure we are following best practices and while building quality front end for web based application for fortune 500 client.
If i could get a plugin or any link to web based open source application will be great!
You always want to run tests on here towards the end. But you can also run them periodically.
http://validator.w3.org/
As codehorse has said you can validate them on w3.org. There is an add on for firebug which can do this for you (I have never used it). https://addons.mozilla.org/en-US/firefox/addon/validator/
Just found this one while I was looking at other stuff
https://addons.mozilla.org/en-US/firefox/addon/html-5-validator/?src=ss yet again not sure if it works.

HTML Components (htc) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Can any one suggest me a good tutorial or book for learning HTML Components (htc) ?
HTC files are driven by the behavior CSS style. This is non-standard and only works in IE, so you won't be able to support users of other browsers using this method.
Because of this, virtually all the HTC behavior files I've seen have been implemented as hacks to make IE support some or other feature which other browsers already have.
For example:
CSS3Pie
WhateverHover
When it comes to developing HTC files, there's not actually that much to it - they're basically standard Javascript, with a small XML wrapper. If you can write Javascript in the browser, then you'll be able to write an HTC behavior file. The downside is that you won't be able to use any external Javascript, so no JQuery or other libraries.
The question is why? As I say, the only use-case that makes sense if you want to write an IE hack. Virtually everything else that you could want to use HTC for would be better implemented as straightforward Javascript, for any number of reasons.
Well here are some resources on them:
http://www.w3.org/TR/NOTE-HTMLComponents
http://msdn.microsoft.com/en-us/library/ms532146(v=vs.85).aspx
I'm not 100% sure what you meant by "learning HTML Components", I assume those are what you are after.

HTML or Javascript Decompiler Available [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any HTML or Javascript decompiler available?
There is not, since it's not compiled in the first place...is a javascript unpacker or un-minifier what you are after? If not, right click (or view menu), view source.
Also, Google Chrome has built-in tools for this and Firefox has Firebug, right click, inspect element in either.
Ctrl + U :D
On a serious note HTML and JS are not compiled as such , the code is generally open for all to see
I just came up on this question from Google and decided to put in my two cents as things have changed.
You can use the Spidermonkey Javasccript shell. From this shell, you can actually disassemble script and view interpreter bytecode.
Try this JS Beautifier DOT org
It's unpack and deofuscate any JS
or this JS Beauty
In your browser, go to View->Source (short-cut Cntr+U in some browsers). Everything is there in front of you.

Are there any viable alternatives to wkhtmltopdf on windows, for html to pdf conversion? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've found wkhtmltopdf, which looks good on the surface and works fine in very small cases, but it doesn't provide any real css control over the rendering.
By that I mean it doesn't use the print media type and page breaks are not respected, as well, on windows you can't control the names of some header/footer variables, or generate a TOC off of teh h1 tags.
Are there any real open source alternatives, I've tried xhtml2pdf which is a python library actually called pisa, but it requires reportlab which doesn't play nice windows.
I'm actually programming in .net but if its good and open source, the language isn't a huge issue.
This is an old stackoverflow question, but because google took me here, it could be helpful for somebody else.
Weasyprint should support what the author was looking for.
It supports print css features like page break.
Try weasyprint
It turns out there was no open source alternative that was simpler, but on windows wkhtmltopdf is just not the best thing, so we paid for a better solution.
Winnovative's PDF library is what we used
While it is not open-source, I use ABCPDF. I have a template page in .NET that I use for a wrapper to set up a custom stylesheet for generating PDFs only.