Computer Science, asked by karanpanwar421, 9 months ago

Write an html program to provide a form that collect name and telephone number

Answers

Answered by xSahiBx
69

Answer:

<html>

<head>

<title>

</title>

</head>

<body>

name

<br> telephone number

</body>

</html>

Answered by AskewTronics
14

The HTML program is as follows--

Explanation:

<HTML>

<HEAD>

<TILE>HTML FORM</TILE>

</HEAD>

<BODY>

<Form action="">

 Name: <input type="text" name="name" required><br>

 Phone Number:<input type="text" name="Phone number" required><br>

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

</Form>  

</BODY>

</HTML>

The above program display the form that take the name and phone number and submit that value on that page which URL is defined on the action attributes of the form tag.

Learn More:

  • Coding of html program: https://brainly.in/question/2265148
  • HTML program :https://brainly.in/question/11311264
Similar questions