1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2025-12-29 11:45:20 -05:00
Files
pathduck.github.io/test/autofill/index.html
2025-06-01 11:43:10 +02:00

22 lines
517 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<title>HTML Test Page</title>
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
</head>
<body>
<form name="TestForm" action="success.html" method="get">
<p>
Name:&nbsp;<input autocomplete="on" name="name" type="text" size="24">
</p>
<p>
Phone:&nbsp;<input autocomplete="tel" name="tel" type="tel" size="24">
</p>
<p>
<input type="submit" value=" Submit ">
<input type="reset" value=" Reset ">
</p>
</form>
</body>
</html>