Computer Science, asked by Jiyakumar, 11 months ago

how to make form in html??​

Answers

Answered by mukeshshekhdams
3

Answer:

first write the programming in notepad and then save it in drive:d in my computer application and name the folder by any name you want and the to run the program go in my computer application and open the folder.

Answered by BrainlyCoder
2

Coding

<!DOCTYPE html>

<html>

<head>

<title>Register Form</title>

</head>

<body>

<form>

<table border = 1px>

<tr>

<td>Name :</td>

<td><input type = "text"></td>

</tr>

<tr>

<td>Password :</td>

<td><input type = "password"></td>

</tr>

<tr>

<td>Gender :</td>

<td><input type = "radio"

name = "Gender">Male

<input type = "radio"

name = "Gender">Female

</td>

</tr>

<tr>

<td>Email :</td>

<td><input type = "email"></td>

</tr>

<tr>

<td><input type = "submit"

value = "Submit"></td>

</tr>

</table>

</form>

</body>

</html>

Output

</p><p>&lt;!DOCTYPE html&gt;</p><p>&lt;html&gt;</p><p>    &lt;head&gt;</p><p>        &lt;title&gt;Register Form&lt;/title&gt;</p><p>    &lt;/head&gt;</p><p>    &lt;body&gt;</p><p>        &lt;form&gt;</p><p>            &lt;table border = 1px&gt;</p><p>                &lt;tr&gt;</p><p>                    &lt;td&gt;Name :&lt;/td&gt;</p><p>                    &lt;td&gt;&lt;input type = "text"&gt;&lt;/td&gt;</p><p>                &lt;/tr&gt;</p><p>                &lt;tr&gt;</p><p>                    &lt;td&gt;Password :&lt;/td&gt;</p><p>                    &lt;td&gt;&lt;input type = "password"&gt;&lt;/td&gt;</p><p>                &lt;/tr&gt;</p><p>                &lt;tr&gt;</p><p>                    &lt;td&gt;Gender :&lt;/td&gt;</p><p>                    &lt;td&gt;&lt;input type = "radio"</p><p>                    name = "Gender"&gt;Male</p><p>                    &lt;input type = "radio"</p><p>                    name = "Gender"&gt;Female</p><p>                        </p><p>                    &lt;/td&gt;</p><p>                &lt;/tr&gt;</p><p>                &lt;tr&gt;</p><p>                    &lt;td&gt;Email :&lt;/td&gt;</p><p>                    &lt;td&gt;&lt;input type = "email"&gt;&lt;/td&gt;</p><p>                &lt;/tr&gt;</p><p>                &lt;tr&gt;</p><p>                    &lt;td&gt;&lt;input type = "submit"</p><p>                    value = "Submit"&gt;&lt;/td&gt;</p><p>                &lt;/tr&gt;</p><p>            &lt;/table&gt;</p><p>        &lt;/form&gt;</p><p>    &lt;/body&gt;</p><p>&lt;/html&gt;</p><p>

Similar questions