diff --git a/public/consolidated/html.json b/public/consolidated/html.json
index 1509d6d5..37bfe241 100644
--- a/public/consolidated/html.json
+++ b/public/consolidated/html.json
@@ -31,5 +31,38 @@
"code": "\n\n
\n \n \n \n \n body/content
\n \n \n\n"
}
]
+ },
+ {
+ "name": "Form And Inputs",
+ "snippets": [
+ {
+ "title": "Basic Form With Nested Label",
+ "description": "Basic form using nested label.",
+ "author": "alanb4rt",
+ "tags": [
+ "form",
+ "input",
+ "html",
+ "css",
+ "flex"
+ ],
+ "contributors": [],
+ "code": "\n\n\n \n\n\n \n\n\n"
+ },
+ {
+ "title": "Basic Form",
+ "description": "Basic form with fields for name, email, phone number, and a message.",
+ "author": "alanb4rt",
+ "tags": [
+ "form",
+ "input",
+ "html",
+ "css",
+ "flex"
+ ],
+ "contributors": [],
+ "code": "\n\n\n \n\n\n \n\n\n"
+ }
+ ]
}
]
\ No newline at end of file
diff --git a/snippets/html/form-and-inputs/basic-form-with-nested-label.md b/snippets/html/form-and-inputs/basic-form-with-nested-label.md
new file mode 100644
index 00000000..57592e69
--- /dev/null
+++ b/snippets/html/form-and-inputs/basic-form-with-nested-label.md
@@ -0,0 +1,63 @@
+---
+title: Basic Form With Nested Label
+description: Basic form using nested label.
+author: alanb4rt
+tags: form,input,html,css,flex
+---
+
+```html
+
+
+
+
+
+
+
+
+
+```
diff --git a/snippets/html/form-and-inputs/basic-form.md b/snippets/html/form-and-inputs/basic-form.md
new file mode 100644
index 00000000..d97ea821
--- /dev/null
+++ b/snippets/html/form-and-inputs/basic-form.md
@@ -0,0 +1,68 @@
+---
+title: Basic Form
+description: Basic form with fields for name, email, phone number, and a message.
+author: alanb4rt
+tags: form,input,html,css,flex
+---
+
+```html
+
+
+
+
+
+
+
+
+
+```