EDITABLE TEXT IN HTML
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
</head>
<body>
    <h2 > The div element is editable </h2>
	<div contenteditable="true">
       click on text to edit.
    </div>
	<div contenteditable="true"> click to edit text </div>
	<div contenteditable="false">This text is not editable</div>
</body>
</html>