1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<HTML>
<HEAD>
<TITLE>test</TITLE>
</HEAD>
<BODY>
<div id="form">
<input type="image" src="images/img1.jpg" onclick="javascript:location.href=\'test2.php\';" style=" margin:40px; height:40px; border-radius:10px; box-shadow:0 0 15px 2px;"/>
<input type="image" src="images/img2.jpg" onclick="javascript:location.href=\'test1.php\';" style=" margin:40px; height:40px; border-radius:10px; box-shadow:0 0 15px 2px;" />
<form name="myForm" method="post" action="test.php" >
<input type="image" src="images/img3.jpg" onclick="javascript:this.form.submit();" style=" margin:40px; height:40px; border-radius:10px; box-shadow:0 0 15px 2px;" />
</form>
</div>
</body>
</html> |