Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

Input Type Range

The <input type=”range”> element creates a slider control for selecting a numerical value, where the exact value may not be critical. By default, the range spans from 0 to 100. Nonetheless, you can specify limitations on acceptable numbers using the minmax, and step attributes.

Example

<form>
  <label for=”vol”>Volume (between 0 and 50):</label>
  <input type=”range” id=”vol” name=”vol” min=”0″ max=”50″>
</form>

Input Type Search

The <input type=”search”> element is employed for search fields, with its behavior akin to that of a standard text field.

Example

<form>
  <label for=”gsearch”>Search Google:</label>
  <input type=”search” id=”gsearch” name=”gsearch”>
</form>

Input Type Tel

The <input type=”tel”> is utilized for input fields designated to hold telephone numbers.

Example

<form>
  <label for=”phone”>Enter your phone number:</label>
  <input type=”tel” id=”phone” name=”phone” pattern=”[0-9]{3}-[0-9]{2}-[0-9]{3}”>
</form>