diff --git a/docs/HTML Basics/_category_.json b/docs/HTML Basics/_category_.json deleted file mode 100644 index bb516bd..0000000 --- a/docs/HTML Basics/_category_.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "label": "HTML - Basics", - "position": 2, - "link": { - "type": "generated-index", - "description": "You will learn the complete basics of HTML here." - } -} diff --git a/docs/HTML Forms/_category_.json b/docs/HTML Forms/_category_.json deleted file mode 100644 index d3f5d4d..0000000 --- a/docs/HTML Forms/_category_.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "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 deleted file mode 100644 index cbeb8a7..0000000 --- a/docs/HTML Forms/a-sample-html-form.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -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. -- `