Formatting, Attributes, Links, Navigation Flashcards
What element defines a paragraph?
The p tag defines a paragraph.
Browsers automatically add a single blank line before and after each paragraph element.
HTML headings (headlines) are titles or subtitles that you want to display on a webpage. HTML headings are defined with what tags?
HTML headings are defined with the h1 to h6 tags. This is a block-level element which starts a new block. h1 defines the most important heading. h6 defines the least important heading.
This HTML element defines bold text, without any extra importance. (visual-only)
The b tag specifies bold text without any extra importance. This an inline element - wrapped around phrases of text or similar inline purpose.
This HTML element defines text with importance, seriousness, urgency. The content inside is typically displayed in bold.
The strong tag is used to define text with strong importance. The content inside is typically displayed in bold. This is an inline element - wrapped around phrases of text or similar inline purpose.
This HTML element defines italic text, without any extra importance. (visual-only)
The i tag defines a part of text in an alternate voice or mood. The content inside is typically displayed in italic.
The i tag is often used to indicate a technical term, a phrase from another language, a thought, a ship name, etc. This is an inline element - wrapped around phrases of text or similar inline purpose.
This HTML element is used to put emphasis on something. The content inside is typically displayed in italic.
The em tag is used to define emphasized text. The content inside is typically displayed in italic.
A screen reader will pronounce the words in em with an emphasis, using verbal stress. This is an inline element - wrapped around phrases of text or similar inline purpose.
HTML lists allow web developers to group a set of related items in lists. An unordered list has what tags.
The ul tag defines an unordered (bulleted) list. Use the ul tag together with the li tag to create unordered lists. This is a block-level element which starts a new block.
HTML lists allow web developers to group a set of related items in lists. An ordered list has what tags.
The ol tag defines an ordered list. An ordered list can be numerical or alphabetical.
The li tag is used to define each list item.
HTML lists allow web developers to group a set of related items in lists. It supports description (definition) lists. A description (definition) list has what tags.
The dl tag defines a description list.
The dl tag is used in conjunction with dt (defines terms/names) and dd (describes each term/name).
An HTML tag which specifies a section that is quoted from another source.
The blockquote tag specifies a section that is quoted from another source.
Browsers usually indent blockquote elements. This is a block-level element which starts a new block.
A short quotation. Browsers normally insert quotation marks around the quotation.
The q tag defines a short quotation. Browsers normally insert quotation marks around the quotation. This is an inline element - wrapped around phrases of text or similar inline purpose.
This tag defines a specific time. The element within is used to translate the time into a machine-readable format so that browsers can offer to add date reminders through the user’s calendar, and search engines can produce smarter search results.
The time tag defines a specific time (or datetime).
The datetime attribute of this element is used translate the time into a machine-readable format so that browsers can offer to add date reminders through the user’s calendar, and search engines can produce smarter search results.
Define some text as computer code in a document
The code tag is used to define a piece of computer code. The content inside is displayed in the browser’s default monospace font.
Character entities are used to display reserved characters in HTML. What entity is used for the greater than sign?
An entity name is easy to remember. Browsers may not support all entity names, but the support for entity numbers is good.
Character entities are used to display reserved characters in HTML. What entity is used for the less than sign?
An entity name is easy to remember. Browsers may not support all entity names, but the support for entity numbers is good.