0
Using the best front-end web development tool develop a proffessionally designed and good looking farmer's registration form
3 Answers
+ 1
I can't tell you whole code but can tell you how to do it.
(It will match with a simple log-in form)
You can set a good background by yourself.
For name and other form types u can use <input type="name">
Same u can replace with email or password.
Next or Submit button should link to other page.
And if you have a forgot (ex:-"password") Section, it should also link to other page.
For this project, u should have a basic knowledge of HTML.
Feel free to ask.
Hope it works..
+ 1
<html>
<head>
<tittle>Registration Form </tittle>
</head>
<body>
<div class="tittle">
Registration form
</div>
</body>
</html>
+ 1
<body>
REGISTRATION FORM
<br>
Firstname: <input type=text placeholder=firstname> <br>
Lastname: <input type=text placeholder=lastname> <br>
DOB: <input type=text placeholder=date of birth> <br>
address: <input type=text> <br>
Crop type: <input type=text placeholder=crop type> <br>
©justanexample
</body>
Elisha Makeseni