It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Any suggestions which feature can I use for simple web pages?
It really depends on how advanced you plan on making your website. Generally speaking most of the real browsers (NOT IE) support most of the html 5 elements.
Have a look at http://html5readiness.com/ to see what elements are supported by which browsers.
You can use new HTML5 tags which make markup more semantic. In order to get started right away, use this Initializr - HTML5 templates generator
http://caniuse.com is specifically designed to answer your question.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I saw this great dynamic image website which got me curious on actual development. My plan is to create a friendly more dynamic animation on the left and right margin of the browser giving it more flavor or life. I am a complete beginner but I am willing to learn. So what would I need to create animations like as seen on link and are there any good tutorials to do this.
You can write raw code for HTML5 canvas or alternatively use a third party app like Adobe Edge.
http://labs.adobe.com/technologies/edge/
Also check out CSS3 animations
http://webdesignerwall.com/trends/47-amazing-css3-animation-demos
Or a Javascript animation library like Alice.js
http://blackberry.github.com/Alice/
What you want to learn is HTML5 with Canvas.
Essentially W3 is trying to replace flash with this feature.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to execute special behavior dependent on which web browser is being used.
I'd prefer a solution in HTML, but a scripting language would be fine too.
The special behavior is pretty minimal and only for safari users.
The navigator object in javascript will do that for you.
Here ya go:
http://www.w3schools.com/js/js_browser.asp
The only solution I'm aware of that only uses HTML code and no JS is conditional comments. It'll be applied by IE9 and below OR IE10+ and non-IE browsers.
In CSS, prefix vendors (like -webkit-some-experimental-property) are there for still experimental properties and non-standard ones.
As a general advice: don't ever try to detect browsers with JS or server-side or one of them will bite you back sooner or later. Explain what your problem really is and you'll probably learn how to do it with another method.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How do I equal Browser capability between Ie8 & Ie7? How do I solve this problem?
Use one of these: CSS reset, Blueprint CSS, Reset CSS
This resource on HTML5 Cross Browser Polyfills should point you in the right direction.
I personally like to use dean edwards scripts: http://code.google.com/p/ie7-js/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
What is the purpose of the iframe tag in HTML? What is it used for?
An <iframe> is used for containing (X)HTML documents in other (X)HTML documents. This enables updates of parts of a website while the user browses, without making them reload the whole thing. (This is now largely replaced by AJAX).
Also, see:
http://w3schools.com/TAGS/tag_iframe.asp
http://en.wikipedia.org/wiki/HTML_element#Frames
Be careful. <iframe> tags are becoming less common.
I wouldn't use iframes except in really specific cases, because it is nonstandard.
here is the link
However, Google images still uses <iframe> tags.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
what are the skills combination required to develop html5 application ?
HTML and javascript. If you want it to be pretty CSS would be helpful. And if you want it to be more dynamic a server side language is a must.
Personally I like Dive Into HTML5 very much.
This would be HTML5...
HTML5, Javascript and CSS.
Programming and a bit of design.