remove web and small improvements

This commit is contained in:
2023-11-28 02:33:26 +01:00
parent 344fe990af
commit e079294b11
8 changed files with 80 additions and 549 deletions
+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Input Field and Button</title>
</head>
<body>
<input type="text" id="myInput">
<button type="button" onclick="myFunction()">Submit</button>
<script>
function myFunction() {
var input = document.getElementById("myInput").value;
alert("Input value: " + input);
}
</script>
</body>
</html>