HTML Review

Objectives

  • Define HTML Vocabulary Words
  • Create HTML Forms
  • Use Semantic HTML Tags

HTML

HTML5 Types

<input type="search">

<input type="email">

<input type="url">

<input type="tel">

<input type="number">

<input type="date">

<input type="time">

<input type="datetime">

<input type="range">

<input type="color">

HTML5 Attributes

<input type="text" required>
<input type="number" disabled>
<input type="checkbox" checked>

Make sure a field is filled out

Don't allow the user to change a field

Set to be checked by default

Copy of Processing and Validating Forms

By LizTheDeveloper

Copy of Processing and Validating Forms

  • 1,164