diff --git a/courses/html/basic/basic-tags-and-elements.md b/courses/html/basic/basic-tags-and-elements.md
new file mode 100644
index 000000000..91d46e6e8
--- /dev/null
+++ b/courses/html/basic/basic-tags-and-elements.md
@@ -0,0 +1,89 @@
+---
+id: basic-tags-and-elements
+title: Basic Tags and Elements
+sidebar_label: Basic Tags and Elements
+sidebar_position: 3
+description: "Learn the basic tags and elements of HTML, the foundation of web development."
+tags: [html courses, web development in html courses, html basic, basic tags and elements]
+keywoards: [html courses, web development in html courses, html basic, basic tags and elements]
+author: [CodeHarborHub, Ajay Dhangar]
+---
+
+
+
+
+
+
+In this section, you will learn the basic tags and elements of HTML, the foundation of web development. HTML stands for HyperText Markup Language. It is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
+
+## What are HTML Tags and Elements?
+
+HTML tags and elements are the building blocks of HTML pages. HTML tags are used to define the structure of a web page and are written using angle brackets (`<` and `>`). HTML elements are delineated by tags and provide information about the content of the page. Browsers do not display the HTML tags, but use them to interpret the content of the page.
+
+HTML elements can be nested within each other to create a hierarchy of content. For example, a paragraph element (`
`) can contain a link element (``) or an image element (` ` | Defines a paragraph of text |
+| `` | Defines a hyperlink to another web page or resource |
+| ` This is a paragraph of text. This is a paragraph of text.`). This nesting of elements allows you to create complex layouts and structures for your web pages.
+
+## Basic HTML Tags
+
+Here are some of the basic HTML tags that you will use frequently when creating web pages:
+
+| Tag | Description |
+| --- | ----------- |
+| `` | Defines the root element of an HTML page |
+| `` | Contains meta-information about the document, such as the title and links to external resources |
+| `
`, `
`, `
`, `
`, `
`, `
` | Defines headings of different levels |
+| `
` | Defines an image to be displayed on the page |
+| `
`, `
`, `
`, `
`, ` `, ` ` | Defines a table with rows, headers, and data cells |
+| ` Welcome to My Web Page
+
+
+
+
+```
+
+
Welcome to My Web Page
+
+
+
`: This element defines a heading.
+- `