Input Types

Input Type Text

<label for="pole">Podaj tekst:</label><br>
<input type="text" id="pole" name="pass" value="">

Input Type Password

<label for="haslo">Podaj hasło:</label><br>
<input type="password" id="haslo" name="pass" value="">

Input Type Number

<label for="l1">Podaj liczbę od 1 do 5:</label><br>
<input type="number" id="l1" name="liczba1" value="" min="1" max="5">

Input Type Submit

<label for="imie">Podaj dane:</label>
<form action="input.htm" id="dane" method="get">
<input type="text" id="imie" name="name" value="Imię">
<input type="text" id="nazwisko" name="surname" value="Nazwisko">
<input type="submit" value="Wyślij formularz">
</form>

Input Type Reset

<form>
<label for="tekst">Podaj tekst:</label><br>
<input type="text" id="tekst" name="tekst" value="">
<input type="reset" value="Zresetuj">
</form>

Input Type Radio

<input type="radio" id="ryz" name="skrobia" value=""><label for="ryz">Ryż</label><br>
<input type="radio" id="kasza" name="skrobia" value=""><label for="kasza">Kasza</label>

<p></p>

<input type="radio" id="kura" name="danie" value=""><label for="kura">Kurczak</label><br>
<input type="radio" id="swinia" name="danie" value=""><label for="swinia">Schabowy</label>


Input Type Checkbox

<input type="checkbox" id="cb1" name="cb1" value=""><label for="cb1">Zupa</label><br>
<input type="checkbox" id="cb2" name="cb2" value=""><label for="cb2">Surówki</label><br>
<input type="checkbox" id="cb3" name="cb3" value=""><label for="cb3">Danie główne</label>


Input Type Button

<input type="button" id="b1" name="button1" value="Przycisk">

Input Type File

<input type="file" id="p1" name="plik1">

Strona główna