0
votes
1
vote
Making a DOCTYPE-less HTML page W3C compliant.
You're going to need to determine the document type to which you'd like to adhere, and then begin working on making the site validate against it. I'd suggest picking something like XHTML Transition …
0
votes
HTML <head> best practices
Title, meta tags for keywords, content-type (if not explicitly set by the web server), and any CSS to be applied to the page.
Declaring the CSS up front allows the browser to lay out the pa …
1
vote
Which is the best software for creating html prototype?
If you mean a simple prototype of a web site that you can show off in a browser, then any old WYSIWYG-style HTML editor would do the job, although if you make the effort to write things as cleanly …
2
votes
HTML vs XHTML does it still matter?
Pick one and stick to it, and be as compliant as possible in the face of other constraints. Don't think for a second, however, that HTML vs. XHTML is a more important issue than getting the job don …
1
vote
Best way to code stackoverflow style ‘questions’ / ‘tags’ rollover buttons
You don't need to use JavaScript for this; some simple CSS will suffice:
a:hover {
background-color: /* something magical */;
}
Note the ":hover" …
8
votes
Semantic HTML markup for FAQs
I'd go with the simplest model; each question is a heading, with answers in paragraph tags. Clear, logical and semantically sane, I think.
The reason I wouldn't use the definition list tags …
1
vote
Rendering remote content through html frame !
W3Schools has a page explaining the basics of the <iframe> tag.
…
1
vote
Will HTML be replaced by any new technology?
The problem here is that HTML is very very good for describing documents, which is what it was designed for, and not particularly good for helping lay out complicated interfaces/web applications, w …
4
votes
Convert plain text input to HTML
You could implement some very simple wiki-like markup, although "simple" here could vary; consider using something like Markdow …
10
votes
Submitting data from textarea by hitting “Enter”.
Hitting Enter in a textarea inserts a line break, rather than submitting the parent form; this would't work in that fashion even with regular form tags.
It would be inadvisable …
1
vote
Better PHP,MySql,HTML and JavaScript IDE
NetBeans has decent support for PHP, HTML, JavaScript and so on, including decent debugger support for PHP. It might be worth a gander.
…
8
votes
Button inside of anchor link works in Firefox but not in Internet Explorer?
As Daniel states above, you can't have a <button> inside an <a> element.
To get the effect you're looking for, you can ditch the <a> …
4
votes
How come my HTML Include wont work?
Make sure the (including) file has a .shtml extension
Make sure server-side includes are enabled in the web server
…
2
votes
How To Implement A PHP/HTML Cache
Why can't you cache them? If it's because they change very rapidly, then you're probably better off trying to reduce the retrieval and rendering overhead.
If the contents vary according to …
