write a conclusion for a project on HTML : advanced features????
Answers
You have seen (16 + 5) HTML tags and 1 document declaration tag that can be used to create web documents.
There are 5 tags – along with the document declaration – that form the basic skeleton of an HTML5 document. The remaining 16 tags allow you to structure and organize your content.
Contents
An Overview of HTML
Document Declaration
Template Tags
html
head
body
title
meta
HTML Tags
p
h1 – h6
strong
em
i
mark
ul
ol
li
img
a
Conclusion
An Overview of HTML
You have seen 21 of the 108 HTML tags.
Most HTML tags come in pairs: consisting of a start tag and its corresponding end /tag.
Content – which may contain HTML tags – is placed between the tags.
You have seen two exceptions to the tag-pair rule:
the img which has no closing tag because it doesn’t take any content – instead, it embeds an image into the document where the tag occurs.
the meta, which takes some attributes
while these tags do not take a closing tag, some people prefer to write them with a closing indicator /: