Skip to main content

Posts

Showing posts from February, 2019

Top HTML & HTML5 Interview Questions & Answers

1) What is HTML? HTML is short for HyperText Markup Language and is the language of the World Wide Web. It is the standard text formatting language used for creating and displaying pages on the Web. HTML documents are made up of two things: the content and the tags that format it for proper display on pages. 2) What are tags? Content is placed in between HTML tags in order to properly format it. It makes use of the less than symbol (<) and the greater than symbol (>). A slash symbol is also used as a closing tag. For example: 1 <strong> sample </strong>   3) Do all HTML tags come in a pair? No, there are single HTML tags that do not need a closing tag. Examples are the <img> tag and <br> tags. 4) What are some of the common lists that can be used when designing a page? You can insert any or a combination of the following list types: – ordered list – unordered list – definition list – menu list – directory list