Search This Blog

HTML Input Tag With Text Example

HTML Input Tag With Text Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Input Tag With Text Example </h2>
<form>
<lable> Enter Your Name: </lable> <input type="text"/>
<br/><br/>
<lable> Enter Your Name: </lable> <input type="text" Name="U_name"/>
<br/><br/>
<lable> Enter Your Name: </lable> <input type="text" id="U_name"/>
<br/><br/>
<lable> Enter Your Name: </lable> <input type="text" value="your name"/>
<br/><br/>
<lable> Enter Your Name: </lable> <input type="text" placeholder="your name"/>
<br/><br/>
<lable> Enter Your Name: </lable> <input type="text" size="30"/>
</form>
</body>
</html>
OUTPUT
HTML Input Tag With All Attribute Example

No comments:

Post a Comment