diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2021-02-10 16:05:37 -0600 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2021-02-10 16:05:37 -0600 |
commit | 40b7e7f9817b13c8bf644a64da9c40c6e140bc20 (patch) | |
tree | 76e093677e13f0322247733c168cf910c598f8ad /csci4131/hw2/strap012/MyForm.html | |
parent | a (diff) | |
download | homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.gz homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.bz2 homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.lz homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.xz homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.zst homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.zip |
i hate everything
Diffstat (limited to 'csci4131/hw2/strap012/MyForm.html')
-rw-r--r-- | csci4131/hw2/strap012/MyForm.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/csci4131/hw2/strap012/MyForm.html b/csci4131/hw2/strap012/MyForm.html new file mode 100644 index 0000000..337f26d --- /dev/null +++ b/csci4131/hw2/strap012/MyForm.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="utf-8"> + <title>There is no form</title> + <link rel="stylesheet" href="style.css"> +</head> +<body> + <nav> + <table> + <tr> + <td class="linkTable"><a href="./myWidgets.html">myWidgets</a></td> + <td class="linkTable"><a href="./myContacts.html">myContacts</a></td> + <td class="linkTable"><a href="./MyForm.html">MyForm</a></td> + </tr> + </table> + </nav><br> + <h2>Simple Form</h2> + <form method="post"> + <p> + <label>Name: + <input name="name" type="text" size="25" maxlength="30"><br><br> + </label> + <label>Email: + <input name="email" Type="email" size="25" maxlength="30"> (name@test.dom)<br><br> + </label> + <label> URL + <input name="URL" Type="url" size="25" maxlength="30">(/https?/g://web.site)<br> + </label> + + + </p> + <p> + <input type="submit" value="Submit"> + <input type="reset" value="Clear"> + </p> + </form> +</body>
\ No newline at end of file |