From 9a80e15a8ea55ad3f84d301354858e98f88e8e9d Mon Sep 17 00:00:00 2001 From: Gaurab Chhetri Date: Sat, 6 Apr 2024 18:52:38 +0545 Subject: [PATCH] [added]: More Content --- docs/HTML Basics/_category_.json | 8 - docs/HTML Forms/_category_.json | 8 - docs/HTML Forms/a-sample-html-form.md | 50 ----- .../a-sample-html-document.md | 0 docs/html-accessibility.md | 112 +++++++++++ docs/{HTML Basics => }/html-attributes.md | 0 docs/{HTML Basics => }/html-comments.md | 0 docs/html-form-handeling.md | 130 +++++++++++++ docs/{HTML Basics => }/html-formatting.md | 0 docs/html-forms.md | 183 ++++++++++++++++++ docs/html-frameworks-and-libraries.md | 121 ++++++++++++ docs/{HTML Basics => }/html-headings.md | 0 docs/{HTML Basics => }/html-links.md | 0 docs/{HTML Basics => }/html-lists.md | 0 docs/html-media.md | 68 +++++++ docs/{HTML Basics => }/html-paragraphs.md | 0 docs/{HTML Basics => }/html-quotes.md | 0 docs/html-responsive-design.md | 130 +++++++++++++ docs/html-semantics-and-seo.md | 135 +++++++++++++ docs/{HTML Basics => }/html-tables.md | 0 docs/html-validation.md | 55 ++++++ docs/html5-features.md | 126 ++++++++++++ docs/semantic-html.md | 100 ++++++++++ static/img/ComputeNepal-logo.jpg | Bin 25781 -> 15715 bytes 24 files changed, 1160 insertions(+), 66 deletions(-) delete mode 100644 docs/HTML Basics/_category_.json delete mode 100644 docs/HTML Forms/_category_.json delete mode 100644 docs/HTML Forms/a-sample-html-form.md rename docs/{HTML Basics => }/a-sample-html-document.md (100%) create mode 100644 docs/html-accessibility.md rename docs/{HTML Basics => }/html-attributes.md (100%) rename docs/{HTML Basics => }/html-comments.md (100%) create mode 100644 docs/html-form-handeling.md rename docs/{HTML Basics => }/html-formatting.md (100%) create mode 100644 docs/html-forms.md create mode 100644 docs/html-frameworks-and-libraries.md rename docs/{HTML Basics => }/html-headings.md (100%) rename docs/{HTML Basics => }/html-links.md (100%) rename docs/{HTML Basics => }/html-lists.md (100%) create mode 100644 docs/html-media.md rename docs/{HTML Basics => }/html-paragraphs.md (100%) rename docs/{HTML Basics => }/html-quotes.md (100%) create mode 100644 docs/html-responsive-design.md create mode 100644 docs/html-semantics-and-seo.md rename docs/{HTML Basics => }/html-tables.md (100%) create mode 100644 docs/html-validation.md create mode 100644 docs/html5-features.md create mode 100644 docs/semantic-html.md 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. -- `