write HTML of the following
Answers
Answer:
Creating Your First HTML Document. Let's walk through the following steps. At the end of this tutorial, you will have made an HTML file that ...
<form action="action_page.php">
<div class="container">
<h1>Register</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="first name"><b>first name</b></label>
<input type="text" placeholder="Enter name" name="first name" id="first name" required>
<label for="last name"><b>last name</b></label>
<input type="text" placeholder="Enter name" name="last name" id="last name" required>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" id="email" required>
<label for="city"><b>city</b></label>
<input type="text" placeholder="Enter city" name="city" id="city" required>
<div class="container signin">
<p>Already have an account? <a href="#">Sign in</a>.</p>
</div>
</form>
Hope it helps
Thanks.