diaryofaprogrammer | Unsorted

Telegram-канал diaryofaprogrammer - Programming Diaries

228

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

Subscribe to a channel

Programming Diaries

#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.

Читать полностью…
Subscribe to a channel