You can add user name, surname, and user password to your websites using Html5. This is quite simple and easy to do with html5. First we start creating our HTML5 content and then we build our content with help from the form actions tags.
Example;
<html>
<body>
<form action="">
İsim
<input type="text" name="User Name">
<br>
Soyisim:
<input type="text" name="Second Name">
</form>
</body>
</html>
In this way, users can now fill in the necessary parts of your page using their names.
Comments
Post a Comment