How to add forms | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to add forms

26th Aug 2017, 9:30 AM
Gayani Peiris
Gayani Peiris - avatar
4 Answers
+ 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.....
26th Aug 2017, 9:31 AM
Leon lit
Leon lit - avatar
+ 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
26th Aug 2017, 9:37 AM
GAWEN STEASY
GAWEN STEASY - avatar
26th Aug 2017, 9:55 AM
Calviղ
Calviղ - avatar
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>
26th Aug 2017, 4:53 PM
Victor Iroka
Victor Iroka - avatar