Being a parent means loving your children more than you've ever loved yourself!
#JavaScript #HTML #CSS

Being a parent means loving your children more than you've ever loved yourself!

<html>


	<head>


	<title>Simple is better than complex</title>


	<script type="text/javascript">


	function trigger()


	{


	document.getElementById("hover").addEventListener("mouseover", popup);


	function popup()


	{


	alert("Being a parent means loving your children more than you've ever loved yourself!");


	}


	}


	</script>


	<style>


	p


	{


	     font-size:50px;


	     position: fixed;


	     left: 550px;


	     top: 300px;


	}


	</style>


	</head>


	<body  onload?="trigger();">


	<p id="hover">The more you love your children, the more they learn to love others!</p>


	</body>


	</html>


要查看或添加评论,请登录

Petran Laurentiu的更多文章