Computer Science, asked by akshatgambhir2890, 8 months ago

Write HTML code for the following form : my name is Abhishek sharma. My family information is Father name Shri r k Sharma.my mother name Anjulata sharma

Answers

Answered by mohammads
5

Answer:

If you want to type the values in the text box remove the value attribute frominput tag

Explanation:

<html>

<body>

<form name="myform" method="post">

Name:<input type="text" name="MyName" "value="Abhishek"><br>

Fathers Name:<input type="text" name= "MyFather" value="Shri R K Sharma"><br>

Mothers Name:<input type="text" name="MyMother" value="Anjulata Sharma"><br>

<input type="submit" value="submit">

<input type="reset" value="reset">

</form>

</body>

</html>

Similar questions