From 498338cb84aff33ab1cb3c7ccb0fbfe384c4f30b Mon Sep 17 00:00:00 2001 From: Hanna Lee Date: Sat, 18 Nov 2017 12:06:26 -0500 Subject: [PATCH] lesson10 form objects added --- FormElements.html | 30 ++++++++++++++++++++++++++++++ buttonObject.html | 18 ++++++++++++++++++ checkboxObject.html | 16 ++++++++++++++++ formvalidation.html | 37 +++++++++++++++++++++++++++++++++++++ multipleselectObject.html | 35 +++++++++++++++++++++++++++++++++++ radioObject.html | 18 ++++++++++++++++++ selectObject.html | 35 +++++++++++++++++++++++++++++++++++ textareaObject.html | 32 ++++++++++++++++++++++++++++++++ 8 files changed, 221 insertions(+) create mode 100644 FormElements.html create mode 100644 buttonObject.html create mode 100644 checkboxObject.html create mode 100644 formvalidation.html create mode 100644 multipleselectObject.html create mode 100644 radioObject.html create mode 100644 selectObject.html create mode 100644 textareaObject.html diff --git a/FormElements.html b/FormElements.html new file mode 100644 index 0000000..38fe245 --- /dev/null +++ b/FormElements.html @@ -0,0 +1,30 @@ + + + + + Form Elements + + + +

CIW JavaScript Specialist

+

Form Elements

+
+ First Name:
+ Email:
+ +
+ + \ No newline at end of file diff --git a/buttonObject.html b/buttonObject.html new file mode 100644 index 0000000..34ed656 --- /dev/null +++ b/buttonObject.html @@ -0,0 +1,18 @@ + + + + + Button Object + + +

CIW JavaScript Specialist

+

Button Object

+
+ + +
+ + \ No newline at end of file diff --git a/checkboxObject.html b/checkboxObject.html new file mode 100644 index 0000000..c127243 --- /dev/null +++ b/checkboxObject.html @@ -0,0 +1,16 @@ + + + + + Checkbox Object + + +

CIW JavaScript Specialist

+

Checkbox Object

+
+ + Do you like to swim? +
+ + \ No newline at end of file diff --git a/formvalidation.html b/formvalidation.html new file mode 100644 index 0000000..cee7367 --- /dev/null +++ b/formvalidation.html @@ -0,0 +1,37 @@ + + + + + Form Validation + + + +

CIW JavaScript Specialist

+

Form Validation

+
+ *First Name:
+ *Last Name:
+ *Email:
+ + +
+ + \ No newline at end of file diff --git a/multipleselectObject.html b/multipleselectObject.html new file mode 100644 index 0000000..0ee4f40 --- /dev/null +++ b/multipleselectObject.html @@ -0,0 +1,35 @@ + + + + + Multiple Select + + + +

CIW JavaScript Specialist

+

Multiple Select

+
+ Select items
+
+ +
+ + \ No newline at end of file diff --git a/radioObject.html b/radioObject.html new file mode 100644 index 0000000..c73cd79 --- /dev/null +++ b/radioObject.html @@ -0,0 +1,18 @@ + + + + + Radio Object + + +

CIW JavaScript Specialist

+

Radio Object

+
+ Do you like Apples? + + Yes + No +
+ + \ No newline at end of file diff --git a/selectObject.html b/selectObject.html new file mode 100644 index 0000000..cd97e6b --- /dev/null +++ b/selectObject.html @@ -0,0 +1,35 @@ + + + + + Select Object + + + +

CIW JavaScript Specialist

+

Select Object

+
+ Select an item
+
+ + +
+ + \ No newline at end of file diff --git a/textareaObject.html b/textareaObject.html new file mode 100644 index 0000000..1aed5a2 --- /dev/null +++ b/textareaObject.html @@ -0,0 +1,32 @@ + + + + + Text & Textarea Objects + + + +

CIW JavaScript Specialist

+

Text & Textarea Objects

+
+ *Name:
+ *Comments: + + + +
+ + \ No newline at end of file