aboutsummaryrefslogtreecommitdiffstats
path: root/csci4131/lec
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2021-02-01 11:51:41 -0600
committerRossTheRoss <mstrapp@protonmail.com>2021-02-01 11:51:41 -0600
commit403a5675d73a06ea764450f73869f1102d94d8e6 (patch)
tree7ba5763d32d0362fe83251545300758813106e02 /csci4131/lec
parentdir things (diff)
downloadhomework-403a5675d73a06ea764450f73869f1102d94d8e6.tar
homework-403a5675d73a06ea764450f73869f1102d94d8e6.tar.gz
homework-403a5675d73a06ea764450f73869f1102d94d8e6.tar.bz2
homework-403a5675d73a06ea764450f73869f1102d94d8e6.tar.lz
homework-403a5675d73a06ea764450f73869f1102d94d8e6.tar.xz
homework-403a5675d73a06ea764450f73869f1102d94d8e6.tar.zst
homework-403a5675d73a06ea764450f73869f1102d94d8e6.zip
example 1
Diffstat (limited to 'csci4131/lec')
-rw-r--r--csci4131/lec/Lec4Ex1.html28
-rw-r--r--csci4131/lec/Lec4Ex2.html18
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