- What is an HTML element? everything form start tag to end tag
- What is another name for a start tag? element name or child name
- What is another name for a end tag? closing tag
- When are HTML elements closed in a start tag?Empty elements are closed in the start tag
- Why are HTML Documents nested?Most HTML elements can be nested (can contain other HTML elements).
- Write the beginning tag, end tag and definition of each tag.
- p <p>This is my first paragraph.</p>
- body <body>
<p>This is my first paragraph.</p>
</body> - html <html>
<body>
<p>This is my first paragraph.</p>
</body>
</html> - br <br> is an empty element without a closing tag (the <br> tag defines a line break).
- What could happen if you do not include the end tag. all your tags might not get coded right
- What is the proper way to close an empty XHTML and XML tag.close empty elements with /> or >
- Why are lowercase tags preferred? they are case insensitive
Wednesday, October 26, 2011
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment