Tagged Questions
3
votes
2answers
133 views
What tool to use to modify HTML file structure
I have HTML files with all sharing the same structure. Something like this:
Body
Table
tr1
... (more nested tables)
tr2
... (more nested tables)
...
0
votes
1answer
179 views
.XML Sitemaps and HTML Sitemaps Clarification
I've got a website with about 170 pages and I want to create an effective Sitemap for it as it is long due. The website is internally linked very well but I still want to take advantage of creating a ...
5
votes
2answers
2k views
HTML5 `html` `xmlns` attribute
Is xmlns appropriate in HTML5?
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
...
</html>
Also, which is preferred, <!DOCTYPE html> or <!doctype html>?
2
votes
1answer
37 views
When I'm delivering a page with the XHTML mime type, should I use XML DOM or HTML DOM?
I prefer using the XHTML mime type for pages, instead of HTML, and serve a different mime type to IE, but when I do this, should I use XML DOM or HTML DOM?
3
votes
3answers
2k views
Google Webmaster Tools says my XML sitemap “appears to be an HTML page”
We're running a lot of sites and we've started to get a lot of these errors in Webmaster Tools:
Sitemap is HTML
Your Sitemap appears to be an HTML page. Please use a supported sitemap format ...
3
votes
4answers
1k views
Is there a way to save MS Word document as HTML w/o the ms proprietary stuff?
So normally I wouldn't use this feature ("Save as Web Page") but I have large documents from clients they just want put on their site as HTML, and formatting it all by hand seems like a waste of time.
...
4
votes
4answers
1k views
Linux HTML/XML W3C Validation Utilities
What programs can I use to validate HTML/XML markup?
Basically, I want a local, command-line based, version of W3C HTML validation service (like lint) that I can use for detecting errors.
Update
I ...
2
votes
4answers
633 views
Webpage Post Submits vs AJAX?
Which is better and why?
I can see where a site that works 100% in AJAX might optimize a bit better, due to not having to reload the page on each click.
But I am a huge fan of the big submit button ...