JSFiddle - React, Tailwind, and code Playground
by tonkec palonkec
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Label</title>
</head>
<body>
<form action="">
<label for="email">Tvoj mail</label>
<input type="email" id="email" placeholder="Tvoj mail">
<br/>
<label for="name">Tvoje ime</label>
<input type="text" id="name" placeholder="Tvoje ime">
<br/>
<label for="password">Tvoja lozinka</label>
<input type="password" id="password" placeholder="Tvoj password">
</form>
</body>
</html>