0
How to add forms
4 Antworten
+ 7
<form></form>....
etc
<form>
<!--show the current time-->
<input type="datetime-local"/>
<--show the current month...-->
<input type="month"/>
<!--let you choose colors....-->
<input type="color"/>
</form>
hope this help.....
+ 3
<form action="cgi-bin/formmail.pl"method="post">
<p>
Name: <input type="text"name="FirstName" value=""size="25" maxlength="50"/>
</p>
<p>
Email: <input type="text"name="Email" value=""size="25" maxlength="50"/>
</p>
</form>
@Leon said is perfect but you can try like this too
0
<form action=" ">
<p>Name:<input type="text" placeholder="Please enter your name here">
</p>
<p>
Password:<input type="password" value="password">
</p>
<input type="submit">Submit</input>
</form>