Strawberry
Strawberry

Reputation: 67868

How can I use HTML 5?

I want to get ready for HTML 5 and start playing around with it. Do I need to install it or something before using it? How does it work? I'm currently on shared hosting.

Upvotes: 5

Views: 24881

Answers (6)

RvdK
RvdK

Reputation: 19790

No.

Like all HTML it has nothing to do with hosting (unlike PHP etc).

Just create your own page with HTML5 elements and upload it to your hosting. Then you can view the page in you browser, if the browser supports HTML5 of course.

Upvotes: 0

drewrockshard
drewrockshard

Reputation: 2071

You don't "install" HTML5 - did you install XHTML 1.1, or HTML 4.x? (no is the answer I'm looking for). Certain browsers support HTML 5 and some don't.

HTML 5 Browser Support/Engines: Comparison of layout engines (HTML5)

HTML 5 Working Draft:HTML 5 Working Draft

Upvotes: 6

surabhi
surabhi

Reputation: 9

It is the fifth revision of the HTML standard. HTML5 is also a potential candidate for cross-platform mobile applications.On 18 January 2011, the W3C introduced a logo to represent the use of or interest in HTML5.

Upvotes: 2

Ming-Tang
Ming-Tang

Reputation: 17651

<!DOCTYPE html> is the doctype of HTML 5, add it on the top of your document.

Even if you didn't add the doctype, HTML 5 tags still work (if supported).

Upvotes: 1

BalusC
BalusC

Reputation: 1108712

You don't need to install anything. Just a texteditor and a webserver is enough. You only need to hope that the webpage visitors uses a webbrowser which supports HTML5 fully. Right now, there aren't many of them out.

Upvotes: 2

Can Berk G&#252;der
Can Berk G&#252;der

Reputation: 113310

HTML5 isn't a server-side technology. All you need to get started is a browser that supports HTML5.

See these pages for HTML5 support in different layout engines:

http://wiki.whatwg.org/wiki/Implementations_in_Web_browsers http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(HTML5)

Upvotes: 9

Related Questions