Welcome to programming Diaries. To find different articles, resources, blogs, questions, tutorials, books and many more about various programming languages. Contact @jamesScript for info @diaryOfaProgrammerGroup for discussion
#HTML Tags and Syntaxes
Tags are elements surrounded by angle brackets. like
<tagname>content</tagname>
They normally come in pairs which are the starting and ending tag. the end tag is usually the same but has a forward slash.
<tagname> Starting tag
</tagname> Ending tag
There are a very few tags that are self closing. that means they have no ending tags.
like <br />, <hr />, <img />, <input /> etc.