Term
| The HTML element: don't leave home without it. |
|
Definition
| Always start each page with a DOCTYPE,the HTML element must always be the top element of your Web page. The closing HTML element should always end it. |
|
|
Term
| Remember to use both your HEAD and your BODY for better HTML. |
|
Definition
| Only the HEAD and BODY elements can go directly inside your HTML element. Meaning that every other element must go either inside the HEAD element or teh BODY element. |
|
|
Term
|
Definition
| Alway give your HEAD element a TITLE element. The HEAD element is the only place you should put your TITLE, META, and STYLE elements. |
|
|
Term
| Feed your BODY only wholesome block elements. |
|
Definition
| You can put only block elements directly inside your BODY element. All inline elements and text need to be inside another block element before they can go in the BODY element. |
|
|
Term
| Keep block elements out of your inline elements. |
|
Definition
| The only things you can put in an inline element are text and other inline elements. Block elements are not allowed under any circumstances. |
|
|
Term
| Keep block elements out of your P element. |
|
Definition
| Paragraphs are for text, so keep block elements out of your paragraphs. You can use inline elements in paragraphs. |
|
|
Term
|
Definition
| Only the LI element is allowed in the UL and OL elements. |
|
|
Term
| Put whatever you want in a list item. |
|
Definition
| You can put text, inline elements, or block elements inside your list items. |
|
|
Term
| The BLOCKQUOTE element only likes block elements. |
|
Definition
| The BLOCKQUOTE element requires one or more block elements inside it. Always put your text and inline elements inside block elements before adding them to a BLOCKQUOTE element. |
|
|
Term
| Be careful about nesting an inline element inside another inline element. |
|
Definition
| Never nest an A element inside another A element because that would be too confusing for our visitors. Also, empty elements like IMG provide no way to nest other inline elements within them. |
|
|
Term
|
Definition
| Tells the browser this is specifying a document type for this page.It is NOT an html page because it has the ! after the < which means that it is something different. |
|
|
Term
|
Definition
| This means that HTML is the root (first) element in your page. |
|
|
Term
|
Definition
| This is just means the HTML 4.01 standard is publicly available. |
|
|
Term
| "-//W3C//DTD HTML 4.01 Trasitional//EN" |
|
Definition
| This part says we're using HTML version 4.01 and that HTML markup is written in English. |
|
|
Term
| "http://www.W3.org/TR/html4/loose.dtd"> |
|
Definition
| This points to a file that identifies this particular standard. |
|
|
Term
|
Definition
| Take out transitional and change loose.dtd to strict.dtd |
|
|
Term
|
Definition
| The HTML standard that is most widely supported by browsers. |
|
|
Term
| The World Wide Web Constrution (W3C) |
|
Definition
| The standard organization that defines what "standard HTML" is. |
|
|
Term
| The document type defintition (DOCTYPE) |
|
Definition
| Used to tell the browser which version of HTML your Web page is written in. |
|
|
Term
|
Definition
| Used if you are writing fully compliant HTML 4.01 |
|
|
Term
| Use the transitional DOCTYPE... |
|
Definition
| If you are transitioning HTML that still includes display oriented elements and attributes. |
|
|
Term
| The META tag in the HEAD element |
|
Definition
| Tells the browser additional information about a Web page, such as the content type and character encoding. |
|
|
Term
|
Definition
| Tells the browser the character set that is used in the Web page. |
|
|
Term
| Most of these laguages are used on computers today and can be represented with the ISO-8859-1 character encoding. |
|
Definition
|
|
Term
|
Definition
| A free online service that checks pages for compliance with standards. |
|
|
Term
| To ensure that your HTML is well formed and that your elements and attributes meet the standards, use the |
|
Definition
|
|
Term
| By adhering to standards... |
|
Definition
| Your pages will display more quickly and with fewer display differences between browsers. |
|
|
Term
| True or False: Element names should be lowercase |
|
Definition
|
|
Term
| Required om the HEAD element |
|
Definition
|
|
Term
| Standard organiztion that supplies the validator |
|
Definition
|
|
Term
| When your HTML meets the standard, it is this. |
|
Definition
|
|
Term
| Microsoft versus Netscape |
|
Definition
|
|
Term
| The boss wanted to standardize before adding this to the HTML |
|
Definition
|
|
Term
| IMG attribute required in standard HTML |
|
Definition
|
|
Term
| DOCTYPE that allows older HTML tags |
|
Definition
|
|
Term
| Definition that tells the browser and validator what kind of HTML you're using. |
|
Definition
|
|
Term
| This service will check your HTML for compliance with the standards. |
|
Definition
|
|