CS351 |website development
  • outline
  • projects
  • syllabus
  • links

HTML 5 Partial Listing of Tags

HTML5 sectioning tags (just some options):

  • <blockquote>
  • <body>
  • <table> (with <td> and <tr>)
  • <div>
  • <hr/>
  • <p>
  • <br/>
  • <span>
  • <br/>
  • <details>
  • <fieldset>
  • <figure>
  • <article>
  • <aside> sectioning tag for sidebars
  • <nav> sectioning tag for navigation sections
  • <section>

 

HTML 5 Tags for linking

  • <a> tag for hypertext links
  • <area>
Metadata Tags for Linking: <link>

 

HTML 5 Tags for forms

  • <button> tag
    can have a <label> and is included in data sent when form is submitted
  • <fieldset> tag with a <legend> tag
    labels a set of form fields as a group
  • <input> tag
    can have a <label> and is included in data sent when form is submitted
  • <keygen> tag
    can have a <label> and is included in data sent when form is submitted
  • <label> tag
    associates a label with one of the other form-associated elements
  • <meter> tag
    can have a <label>
  • <object> tag
    is included in data sent when form is submitted
  • <output> tag
    can have a label
  • <progress> tag
    • can have a label

  • <select> tag with <optgroup> and <option> tags or referencing a <datalist> tag
    • can have a label and is included in data sent when form is submitted

  • <textarea> tag
    • can have a label and is included in data sent when form is submitted

cs351: web site development

  • home
  • outline
  • projects
  • syllabus
  • links