diff --git a/docs/HTML Forms/_category_.json b/docs/HTML Forms/_category_.json new file mode 100644 index 0000000..d3f5d4d --- /dev/null +++ b/docs/HTML Forms/_category_.json @@ -0,0 +1,8 @@ +{ + "label": "HTML - Forms", + "position": 13, + "link": { + "type": "generated-index", + "description": "HTML Forms are used to take input from the user." + } +} diff --git a/docs/HTML Forms/a-sample-html-form.md b/docs/HTML Forms/a-sample-html-form.md new file mode 100644 index 0000000..cbeb8a7 --- /dev/null +++ b/docs/HTML Forms/a-sample-html-form.md @@ -0,0 +1,50 @@ +--- +sidebar_position: 14 +keywords: [html, sample html, basic html] +--- + +# A Sample HTML Form + +Before starting out to discuss about HTML Forms, let's take a look at the same HTML form. + +```html title=sample-form.html + + + + My First HTML Document + + +

This is my first HTML Form.

+
+ + + + + +
+ + +``` + +## Explanation + +The code above is a simple example of a login form. + +- `
` is the declaration of the form in HTML. +- `