JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Placeholders</title>
</head>
<body>
<form action="">
<input type="text" placeholder="Napiši neki tekst">
<input type="email" placeholder="Napiši svoj mail">
<input type="text" placeholder="Kreni pisati" value="Defaultni value uvijek ostaje">
</form>
</body>
</html>