<!doctype html>
<html>
<head>
<title>JS TABLES</title>
<meta charset="utf-8">
</head>
<body>
<p style="height: 70px; background: #f60; text-align: center; line-height:70px;">HELLO WORLD!</p>
</body>
<script>
document.getElementsByTagName('p').onclick = function (){alert("Done!");};
</script>
</html>