diff options
-rw-r--r-- | csci4131/lec/Lec4Ex1.html | 28 | ||||
-rw-r--r-- | csci4131/lec/Lec4Ex2.html | 18 |
2 files changed, 28 insertions, 18 deletions
diff --git a/csci4131/lec/Lec4Ex1.html b/csci4131/lec/Lec4Ex1.html new file mode 100644 index 0000000..dce9a34 --- /dev/null +++ b/csci4131/lec/Lec4Ex1.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>There is no form</title> + </head> + <body> + <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)</input><br><br> + </label> + <label> URL + <input name="URL" Type="url" size="25" maxlength="30">(/https?/g://web.site)</input><br> + </label> + + + </p> + <p> + <input type="submit" value="Submit"> + <input type="reset" value="Clear"> + </p> + </form> + </body>
\ No newline at end of file diff --git a/csci4131/lec/Lec4Ex2.html b/csci4131/lec/Lec4Ex2.html deleted file mode 100644 index 24355bb..0000000 --- a/csci4131/lec/Lec4Ex2.html +++ /dev/null @@ -1,18 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <title>There is no form</title> - </head> - <body> - <form method="post"> - <p> - <input name="URL" Type="url">URL</input><br> - <input name="email" Type="email">Email</input><br> - </p> - <p> - <input type="submit" value="Submit"> - <input type="reset" value="Clear"> - </p> - </form> - </body>
\ No newline at end of file |