Loading

Quipoin Menu

Learn • Practice • Grow

html / Introduction
interview

Q1. What is HTML and what does it stand for?
HTML stands for HyperText Markup Language. It is the standard markup language used to create web pages and web applications.

Q2. What are the main features of HTML?
HTML is platform-independent, supports multimedia elements, provides hyperlinking capabilities, is easy to learn, and works with all browsers.

Q3. What is the basic structure of an HTML document?
An HTML document has <!DOCTYPE html> declaration, <html> root element, <head> containing meta information, and <body> containing visible content.

Q4. What is a tag in HTML?
An HTML tag is a keyword surrounded by angle brackets that defines how the browser should format and display content.

Q5. What is the difference between HTML and HTML5?
HTML5 is the latest version with new semantic elements (<header>, <footer>), multimedia support (<audio>, <video>), canvas, and local storage capabilities.