Valentine's Day Card for Programmers :D


<html>
<head>
<script text="text/javascript">
function displayValentinesMessage()
{
document.getElementById("greeting").innerHTML="Happy Valentine's Day";
}

</script>
</head>
<body>
<h1> I Love You</h1>
<h2> I Miss you </h2>
<input type="button" onclick="displayValentinesMessage();" value="My Heart says"></button>
<div id="greeting"></div>
</body>
</html>

I Love You

I Miss you