+ 2

how a HTML tag works?

29th Nov 2016, 2:42 AM
akash roy
akash roy - avatar
4 Respuestas
+ 1
match the beginning and the end of a block of HTML code
29th Nov 2016, 3:58 AM
Eric Gitangu
Eric Gitangu - avatar
+ 1
there is special program generally known as rendering engine written in other languages as a part of the browser it has been instructed to understand tag mark-up node and thus tags generate output ie has its own ms mozilla own moz opera had own opera but safari chromium opera has webkit
29th Nov 2016, 4:10 AM
Sandeep Chatterjee
+ 1
in simple language..HTML is Hyper text Markup language; i.e it is a client side script used for web browsers. The Tags used in HTML are used to customize the output display of the code..For Example H1 tag will Make a Heading..input tag will make a button, check box, etc...
29th Nov 2016, 4:15 AM
Krutarth Makwana
Krutarth Makwana - avatar
- 2
HTML tags, in general, occur in pairs. <B> Akash Roy < /B> It will make "Akash Roy" to appear bold. However always remember to add a slash i.e. "/" in the closing tag as above. Using multiple tags, one needs to type closing closing tags in reverse order. E.g <B> <I><U> HTML is great </U> </I> </B> Tip: Tags aren't case sensitive
29th Nov 2016, 3:51 AM
Manasvee Kumar
Manasvee Kumar - avatar