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="Tvoj mail">
    
        <br/>
    <label for="password">Tvoja lozinka</label>
    <input type="password" id="password" placeholder="Tvoj mail">
  </form>
</body>
</html>