JSFiddle - React, Tailwind, and code Playground
by tonkec palonkec
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tipovi inputa</title>
</head>
<body>
<form action="">
<label for="">Bilo koji tekst</label>
<input type="text" placeholder="Ovdje mozes pisati text">
<br />
<label for="">Lozinka</label>
<input type="password" placeholder="Input za lozinku">
<br />
<label for="">Email</label>
<input type="email" placeholder="Input za email">
<br />
<label for="">Samo brojevi</label>
<input type="number" placeholder="Input za brojcane vrijednosti">
<br />
<label for="">Odaberi boju</label>
<input type="color">
<br />
<label for="birthday">Kalendar</label>
<input type="date">
<br />
<input type="submit">
</form>
</body>
</html>