HTML Interview Questions
Q.1 What is HTML ?
Ans. HTML is a hyper-text-markup language. Which is used developed web pages and web based application.
Q.2 What is meant by hyper-text and markup language?
Ans. Hyper-text means, A text with in link and Markup-language means defines the tags used in the document.
Q.3 Differences between tag and elements ?
Ans. HTML tag is like a opening and closing entity ex. <p> and </p>, where elements have opening, closing and content ex.<p>some content goes here</p>.
Q.4 What is hyperlink and how to create?
Ans. Hyperlink means, we can jump, one webpage to another webpage. We can create hyperlink by using anchor tag.
Q.5 How many types of heading in html ?
Ans. there are the six heading in html, h1 to h6.
Q.6 Types Of List ?
Ans. There are the three type of lists.
i) Ordered List
ii) Unordered List
iii) Definition List
Q.7 What is Block line and Inline elements ?