diff --git a/Topics/Tech_Stacks/Html.md b/Topics/Tech_Stacks/Html.md new file mode 100644 index 000000000..6910b576c --- /dev/null +++ b/Topics/Tech_Stacks/Html.md @@ -0,0 +1,118 @@ +## What is Html? + HTML or hypertext markup language is a language used to create websites. + It consists of a series of elements that determine the structure of the webpage. We begin the file with the tag and end with . + The most important rule is that every opening tag has a corresponding closing tag. These only differ by a /. + Inside the html tag we have the
and tags. The head tag contains all the meta information about the html page. The body tag consists of the elements to be displayed in the page. Heres a starter template for a html file: + + + + + + + +