Java Games: Flashcards, matching, concentration, and word search.

XHTML Basics

AB
XHTMLExtensible Hypertext Markup Language separates content from data; stricter, cleaner version of HTML
XMLExtensible Markup Language designed to carry data, not display data; you define your own tags
elementa distinct object in the document, like a paragraph, heading, or page title
tagmarks each element in a document; html code that creates an object/element
two-sided tagtag that contains document content
one-sided tag/empty elementtag that contains no content; opens and closes in same tag
<html> tagmarks the start of an html document
</html> tagtells a browser when it has reached the end of the html document
head sectioncontains information about the html document; not displayed in the Web page; Web browsers use the information in the <head> section
body sectioncontains all of the content to be displayed in the Web page; placed after the </head> tag
nestingplacing one element within another
comment tagallows you to add notes to your html code; can be placed anywhere in the code; doesn't show in the browser
white spaceblank spaces, tabs, and line breaks within an html file
block-level elementelements that create blocks or large groupings of text; can contain text, data, inline elements or other block-level elements; generally begins a new line of text
inline elementelements found within the text of the html document; smaller than block-level elements; does not begin a new line of text
inline stylesstyle that is written into an individual tag to change the appearance of that tag
listspresent information in an easy-to-read format
ordered listitems appear in a sequential order
unordered listitems do not need to appear in any special order
definition listcontains a list of definition terms, each followed by a definition description
nested lista list within a list
<address> taglogical tag that identifies contact information; block-level element
<blockquote> tagidentifies a long quotation; indented on both left and right margins; block-level element
<div> tagidentifies a generic block-level element
<pre> tagretains all white space and special characters just the way it is entered in the code; block-level element
character formatting elementsused to specify either the logical meaning or physical appearance of marked text without causing a paragraph break
<cite> taga citation; logical inline element
<code> tagprogram code text; logical inline element
<em> tagemphasized content that displays the text in italics; physical inline element
<span> taga generic inline element
<strong> tagstrongly emphasizes text in bold; physical inline element
<sub> tagsubscripted text; inline element
<sup> tagsuperscripted text; inline element
logical elementdescribes the nature of the enclosed content, but not necessarily how the content should appear
physical elementdescribes how the content should appear but doesn't indicate the content's nature
deprecatedobsolete; no longer in use; out of date



This activity was created by a Quia Web subscriber.
Learn more about Quia
Create your own activities