HTML and CSS Reference
In-Depth Information
</body>
</html>
<!-- Simple section footer -->
<section>
<header>
<h1> Section Heading </h1>
</header>
<p> Section Body </p>
<p> More Body </p>
<footer>
<p> Boring Example &copy; 2010 </p>
</footer>
</section>
Compatibility
HTML5
Not currently supported by any browser, but addressed with a custom element.
Notes
• While this element is not yet supported, it is easily simulated by using a custom tag
or using a <div> tag with a special class.
• A footer element should be included in the HTML5 outlining process.
<form> (Form for User Input)
The element defines a fill-in form that can contain labels and form controls, such as menus
and text entry boxes that might be filled in by a user.
Standard Syntax
<form
accept-charset="list of supported character sets"
action="URL"
class="class name(s)"
dir="ltr | rtl"
enctype="application/x-www-form-urlencoded |
multipart/form-data | text/plain |
Media Type as per RFC 2045"
id="unique alphanumeric identifier"
lang="language code"
method="get | post"
name="form's name for scripting"
style="style information"
target="_blank | frame name | _parent | _self |
_top" (transitional only)
title="advisory text">
</form>
 
Search WWH ::




Custom Search