HTML Flashcards
What is HTML?
HTML stands for Hyper Text Markup Language
HTML is the standard markup language for creating Web pages
HTML describes the structure of a Web page
HTML consists of a series of elements
HTML elements tell the browser how to display the content
HTML elements label pieces of content such as “this is a heading”, “this is a paragraph”, “this is a link”, etc.
What is the <!Doctype> declaration?
The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correctly.
What is the tag used to input a link?
HTML links are defined with the <a> tag.
Example:<a>This is a link</a></a>
What is the <pre></pre> element used for?
The HTML <pre> element defines preformatted text.
The text inside a <pre> element is displayed in a fixed-width font (usually Courier), and it preserves both spaces and line breaks