HTML Basic
- Normally, HTML page consists of two parts – head and body. Head contains text and tags that are not directly displayable at the page. Body contains main webpage content. Every webpage starts with <html> and ends up with </html>. These tags are used to let browser know where HTML code starts and when it ends. There are 4 basic tag elements that are necessary for creating a structured webpage.
-
- HTML headings. HTML headings are marked with a range of tags from <h1> to <h6>
- HTML paragraphs are marked with <p> tag.
- HTML links are marked with <s> tag
- HTML images are marked with <img> tag. In this case, specific characteristics of an image are defined with the help of attributes.
-