HTML TAGS Flashcards
(86 cards)
(BASIC HTML): Defines the document type.
< !DOCTYPE >
(BASIC HTML): Defines an HTML document.
< html >
(BASIC HTML): Defines information about the document.
< head >
(BASIC HTML): Defines a title for the document.
< title >
(BASIC HTML): Defines the document’s body.
< body >
(BASIC HTML): Defines HTML headings.
< h1 > to < h6 >
(BASIC HTML): Defines a paragraph.
< p >
(BASIC HTML): Inserts a single line break.
< br >
(BASIC HTML): Defines a comment.
< !–..– >
(BASIC HTML): Defines a thematic change in the content.
< hr >
(FORMATTING): Defines an acronym. [NOT IN HTML5. USE < abbr > INSTEAD.]
< acronym >
(FORMATTING): Defines contact information for the author/owner of a document/article.
< address >
(FORMATTING): Defines bold text.
< b >
(FORMATTING): Isolates a part of a text that might be formatted in a different section from the other text outside it.
< bdi >
(FORMATTING): Overrides the current text direction.
< bdo >
(FORMATTING): Defines big text. [NOT IN HTML5. USE CSS INSTEAD.]
< big >
(FORMATTING): Defines a section that is quoted from another source.
< blockquote >
(FORMATTING): Defines centred text. [NOT IN HTML5. USE CSS INSTEAD.]
< center >
(FORMATTING): Defines a title of work.
< cite >
(FORMATTING): Defines a piece of computer code.
< code >
(FORMATTING): Defines text that has been deleted from a document.
< del >
(FORMATTING): Represents the defining instance of a term.
< dfn >
(FORMATTING): Defines emphasised text.
< em >
(FORMATTING): Defines fonts, colours, and sizes for text. [NOT IN HTML5. USE CSS INSTEAD.]
< font >