JSFiddle - React, Tailwind, and code Playground

by Mostafa Zeinivand

HTML

<form action="http://yourdomain.com/page.php" method="GET">
    name:
    <input type="text" name="name" placeholder="input your name"/>
    <br/><br/>
    family:
    <input type="text" name="family" placeholder="input your family"/>
    <br/><br/>
    age:
    <input type="number" name="age" value="21" />
    <br/><br/>
    <input type="reset" value="reset form"/>
    <input type="submit" value="submit form"/>
</form>