# Assignment : HTML5 Explain HTML5 newly added <input> types element with expamles. <dl> <dt>email</dt> <dd>for email addresses. </dd> <dd> **Example:** <input type="email" > </dd> <dt>tel</dt> <dd>entering telephone numbers. </dd> <dd> **Example:** <input type="search" > </dd> <dt>search</dt> <dd>for entering a search string. </dd> <dd> **Example:** <input type="email" > </dd> <dt>url</dt> <dd>used for capturing URLs. </dd> <dd> **Example:** <input type="url" > </dd> <dt>number</dt> <dd>for numerical values. </dd> <dd> **Example:** <input type="number" > </dd> <dt>range</dt> <dd>for entering a number whose exact value is not important. </dd> <dd> **Example:** <input type="range" > </dd> <dt>date</dt> <dd>for dates. </dd> <dd> **Example:** <input type="date" > </dd> <dt>color</dt> <dd>for capturing RGB colors in hexadecimal notation. </dd> <dd> **Example:** <input type="color" > </dd> </dl>