5. Design a HTML form for taking in the following
REGISTRATION FORM
Email Id:
Password:
Confirm Password:
Name:
Contact No:
Submit
Answers
Answer:
Coding given below
Explanation:
<html>
<head>
<body>Registration Form</body>
</head>
<h1>Email Id:</h1>
<h2>Password:</h2>
<h3>Confirm Password:</h3>
<h4>Name:</h4>
<h5>Contact No.</h5>
<h6>Submit</h6>
</html>
Hope this helped you
Answer:
<html>
<head>
<title>form</title>
</head>
<body>
<form>
<fieldset>
<legend>Form:</legend>
<table>
<tr>
<td>
Email Id:
</td>
<td>
<input type="mail" placeholder="Email" name="">
</td>
</tr>
<tr>
<td>
Password:
</td>
<td>
<input type="Password" placeholder="Password" name="">
</td>
</tr>
<tr>
<td>
Confirm Password:
</td>
<td>
<input type="Password" placeholder="Confirm Password" name="">
</td>
</tr>
<tr>
<td>
Name:
</td>
<td>
<input type="text" placeholder="Name" name="">
</td>
</tr>
<tr>
<td>
Contact No.
</td>
<td>
<input type="phone" placeholder="Number" name="">
</td>
</tr>
</table>
<input type="submit" value="submit">
</form>
</body>
</html>
Explanation:
hope it is helpful