A simple web based application to send greetings to our love ones in programming style.
<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>
RELATED POST : RELATED POST : RELATED POST