JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Textarea</title>
</head>
<body>
  <form action="">
   <h1>Textarea bez atributa</h1>
    <label for="">Napisi svoju poruku</label> <br/>
    <textarea placeholder="tvoja poruka ide ovdje"></textarea>
  </form>
  
  <form action="">
   <h1>Textarea s atributima</h1>
    <label for="">Napisi svoju poruku</label> <br/>
    <textarea placeholder="tvoja poruka ide ovdje" rows="10" cols="50"></textarea>
  </form>
</body>
</html>