Business Studies, asked by farzanfarooq7938, 1 month ago

Design an html form to take information of a customer visiting a department store such as name , contact no, preferred days of purchasing, favorite item,suggestions etc.,One should provide button to submit as well as reset form contents

Answers

Answered by 1142727
2

Answer:

<html>

<body>

<form>

<h1>Customer Registration</h1>

<table border=1>

<tr>

<td>Name </td>

<td><input type="text" size="20">

<tr>

<td>Contact no </td>

<td><input type="text" size="20">

</tr>

<tr>

<td>Gender</td>

<td><input type="radio" size="20">male

<input type="radio" size="20">female</td>

<tr>

<td>days of purchasing</td> <td><input type="text" size="20">

</tr>

<tr>

<td>favorite item</td>

<td><select name="example"> <option value="item1">Item 1

<option value="item2">Item 2 <option value="item3">Item 3 </select>

<tr>

<td>Suggestion</td>

<td><textarea rows="4" cols="50">

</textarea

<tr>

<td><input type="reset" value="Reset"> </td>

<td><input type="submit"

value="Submit"></td>

</tr>

Explanation:

Similar questions