write the html code for this
Answers
Answer:
<html>
<body>
<form>
<h1>My Registration Page</h1>
<b>First name:</b>
<input type="text" name="first_name" size="25">
<br><br>
<b>Last name:</b>
<input type="text" name="last_name" size="25">
<br><br>
<b>Password:</b>
<input type="password" name="password" maxlength="10">
<br><br>
<b>Re-Type Password:</b>
<input type="password" name="password" maxlength="10">
<br><br>
<b>SEX:</b>
<input type="radio" name="sex" value="Male" checked>Male
<input type="radio" name="sex" value="Female" checked>Female
<br><br>
<h2>Additional Information<h2>
<br><br>
<input type="checkbox" name="mail list" value="Put me on mail list">
Put me on mail list
<br><br>
<input type="reset" value="Reset">
<input type="submit" value="Submit">
</form>
</body>
</html>
Read everything carefully and make sure you don't miss anything out!
Please mark it as brainliest if you like it!
Hope it helps!!
Answer:
html is not a word processing tool or programming language it is only a markup or page layout and hyperlink specification language.It describes the structure of the document
Hope it helps you