I was just browsing on the net for HTML 5 and I got this one of the cool features, where a user can directly edit the content of the page.
Awesome effect.
<pre><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>You Can Edit This</title>
</head>
<body>
<h1>I Mean, You Can Really Edit This</h1>
<p contenteditable=true>
Just double click this text, and start typing. You will be editing this content in your browser. Goto File > Save and the HTML source code for the changed content will be displayed to you.
</p>
</body>
</html>
</pre>
Now this is one of the great power of HTML 5 to come. Let’s see what else the new Web holds for us.
