Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<script language="JavaScript">
function numericKontrol( alan ) {
var msg=alan.value;
var chr;
for ( i=0; i < msg.length; i++ ) {
chr=msg.substring(i,i+1);
if ( chr<"0" || chr>"9" ) {
msg=msg.substring(0,i);
alan.value=msg;
}
}
}
</script>
<title>Deneme</title>
</head>
<body>
<form name="form1" method="post" action="gonder.html">
<input name="Txt01" type="text" value=""
size="30" onKeyUp="numericKontrol(this)"><br>
<input type="button" value="Gonder">
<input type="Reset" value="Temizle">
</form>
</body>
</html>