HTML Flashcards
(171 cards)
-<-html->–<-/html->-
Starts and ends and HTML document.
-<-head->–<-/head->-
Starts and ends the head of the document which contains the title.
-<-title->–<-/title->-
Contains the title of the page that will be displayed by the browser.
-<-body->–<-/body->-
Contains all of the elements contained in the browser window.
-<-p->–<-/p->-
Begins a paragraph of text.
-<-h1->–<-/h1->-
Heading markup. Heading are 1 through 6 with 1 being the largest.
-<-b->–<-/b->-
Bold markup.
-<-i->–<-/i->-
Italicized markup.
-<-br /->-
Creates a break in the text/
-<-hr /->-
Creates a horizontal rule in the text.
-<-sup->–<-/sup->-
Creates a superscript.
-<-sub->–<-/sub->-
Creates a subscript.
-<-strong->–<-/strong->-
Semantic for strong emphasis. Usually bolded.
-<-em->–<-/em->-
Semantic emphasis. Usually italicized.
-<-blockquote->–<-/bolckquote->-
Indicates a long quote. Usually is indented. -<-p->–<-/p->- should be used inside of the blockquote code.
cite=”URL”
The cite attribute to cite where the quote is from and where more information can be found.
-<-abbr->–<-/abbr->-
Semantic for an abbreviation or an acronym.
-<-cite->–<-/cite->-
Semantic for citing a book, film, or research article.
-<-dfn->–<-/dfn->-
Semantic for a definition. Sometimes italicized.
-<-q->–<-/q->-
Semantic for a quote. Sometimes put in quotations but not always, so use CSS for the formatting.
-<-ins->–<-/ins->-
Semantic to show content that has been inserted in to a document. Usually underlined.
-<-del->–<-/del->-
Semantic to show content that has been deleted from a document. Usually strike through.
-<-s->–<-/s->-
Semantic for text that is outdated and should be deleted. Usually striked through.
-<-ol->–<-/ol->-
Ordered list. Contains items within.