Insert Button in html

Button –HTML is a web programming language that providing the facility for  multiple type button in our web page. There are many types buttons are available here HTML language.

Insert a button in html -:  In the html language we can insert button. where we want to insert we give this way as like

First open a notepad for creating a web page. Here write the html code as like this way

<html>

<Head>

<title> Netnic</title>

</head>

<body>

<h1> Button</h1>

<input type=”submit” value=”submit data”>

</body>

</html>

Insert A Radio button -: In the html language we can insert Radio button. where we want to insert we give this way as like …

sex<input type=”Radio” name=”sex”  value=”male” checked>male

<input type=”Radio” name=”sex”  value=”female” checked>female

Insert a check Box html-:  In the html language we can insert check button. Check button also provide the facility for select one item more then item as like if we want to select one more then we can select here as like …

<input type=”Checkbox” name=”lal” value=”sports”>sports<br>

<input type=”Checkbox” name=”lal” value=”sports”>cricket<br>

<input type=”Checkbox” name=”lal” value=”sports”>hockey<br>

By the help of check button we can insert one check button.

Insert a list box in html-:  In the html language we can insert list box. where we want to insert we give this way as like …

<select name=””>
<option>http://www.netnic.org</option>
<option>http://www.vimantha.com</option>
<option>http://www.partynfoods.in</option>
</select>
Edit box in html-: In the html language making a edit box in html we can write this command <Text Area> and </Text Area>

 

Leave a Comment