1 Commits
Author SHA1 Message Date
alu ab5ab2b81b fix html issues 2026-09-02 16:09:32 +00:00
+4 -4
View File
@@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="en">
<head> <head>
<script src="wfa.js" type="module"></script> <script src="wfa.js" type="module"></script>
<script type="module"> <script type="module">
@@ -23,9 +23,9 @@
</script> </script>
</head> </head>
<body> <body>
<label>A: </label><input id="a"> <label>A: </label><input type="text" id="a">
<label>B: </label><input id="b"> <label>B: </label><input type="text" id="b">
<button id="submit">Submit</button> <button id="submit" type="button">Submit</button>
<p><span>Result: </span><span id="result"></span></p> <p><span>Result: </span><span id="result"></span></p>
</body> </body>
</html> </html>