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: + + + + + + + + Document + + + + + + +## Some useful elements: + Inside the body tag is where all the elements displayed on the webpage are coded. + +### Header tags: + Firstly we have the header tag. h1, h2, ..., h5 are used as headers for the document. The greater the number succeding h in the tag the smaller the title gets. + +### Text tag: +In order to type a paragraph we use the p tag. Any text can to be displayed can be written in here. +If the text should be editable by the user then the