mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2025-12-29 11:45:20 -05:00
22 lines
517 B
HTML
Executable File
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: <input autocomplete="on" name="name" type="text" size="24">
|
|
</p>
|
|
<p>
|
|
Phone: <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>
|