From d40037267ca9315766160e2ae4e0615c36574510 Mon Sep 17 00:00:00 2001 From: Sargunan Gurumurthy Date: Wed, 22 Mar 2023 16:43:51 -0400 Subject: [PATCH 1/3] Adding Html.md file for intro to html --- Topics/Tech_Stacks/Html.md | 87 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 Topics/Tech_Stacks/Html.md diff --git a/Topics/Tech_Stacks/Html.md b/Topics/Tech_Stacks/Html.md new file mode 100644 index 000000000..29abce566 --- /dev/null +++ b/Topics/Tech_Stacks/Html.md @@ -0,0 +1,87 @@ +### 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: + ``` {html} + + + + + + + Document + + + + + + ``` +### Some useful elements: + Inside the bode tag is where all the elements displayed on the webpage are coded. + +#### Header tags: + Firstly we have the header tag.

,

, ...,

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

tag. Any text can to be displayed can be written in here. + If the text should be editable by the user then the