HTML5

HTML5

by lshettyl

HTML

> Explain the cache manifest file 
> Geo location of a user (approval due to privacy)
> Desktop notifications
> Name some of the semantic html5 elements

> HTML5 details and summary elements
<details>
  <summary>Expand/Collapse</summary>
  <ul>
    <li>List Item 1</li>
    <li>List Item 2</li>
  </ul>
</details>

> HTML5 Web Worker

> Pattern attribute
<form>
  <input id="txtValue" type="ext" pattern="[A-Za-z]{3}" />
  <input type="submit">
</form>

> turn off autocomplete on forms