M2- What is HTML? Flashcards
MODULE 2
Who invented HTML and why?
HTML was invented by Sir Tim Berners-Lee, a physicist. He developed it to help him and his colleagues from around the world share information easily.
What does HTML stand for, and what do its components mean?
HTML stands for Hypertext Markup Language. “Hypertext” refers to text containing links to other texts, and “Markup” refers to the tags and elements used within a document.
What is an HTML file, and what suffix does it usually have?
An HTML file is a text file with a specific structure, consisting of elements and tags. It usually has a .html suffix.
What is typically the name of the first HTML file that is returned to a browser when visiting a website?
The first HTML file is often called index.html.
What are HTML tags and elements?
An HTML element consists of an opening tag, content, and often a closing tag. Tags are enclosed in angle brackets (< >), with the opening tag starting the element and the closing tag ending it.
What does it mean that HTML elements can be nested?
It means that one HTML element can contain another element inside it.
What are self-closing or empty elements in HTML? Can you provide an example?
Self-closing or empty elements are those that do not need a closing tag. An example is the line break tag.
Who maintains the HTML specification, and what is it called?
The HTML specification is maintained by the World Wide Web Consortium (W3C).
What happens when the HTML specification changes?
When the specification changes, a new version of HTML is standardized. The current version is HTML5.
What role does HTML play in web development?
HTML builds the structure of a web page and describes to the web browser what content to display.