Computer Science, asked by pratyushpaul005, 2 months ago

Which of the following is not a rule to write an HTML code

A. Container tags should be closed
B.Tag name should not contain spaces
C.There should not be any space between ‘< ‘and ‘>’ in a tag
D.Tags and attribute names are case sensitive

Answers

Answered by navneetkataria790
21

d. tag and attibute name are cause sensitive

Answered by Sambhavs
17

Answer:

  1. Container tags: Are those tags which have an opening and an closing tag that's why they always need to be closed so the 1st one is a rule to write an closing tag. (<p></p> is an container tag)
  2. Tag name may contain spaces like <! doctype html>
  3. There can be space between"<" and"<" tags like <! Doctype html>
  4. Tags and attributes name are not always case sensitive like <! doctype html> and <! Doctype html> both are the same

So 3rd is not a rule to write html codes

Similar questions