Google+ PHP TUTORIALS ONLINE HELP FOR MEDICAL AND PROGRAMMING: HTML5 Input Element

Friday 12 September 2014

HTML5 Input Element

HTML5 Input Element

We have discus HTML5 Input Element tag.you can following example of using radio buttons,labels, and submit buttons:

Example
<!DOCTYPE html>
<head><title>HTML5 Input Element</title></head>
<meta http http-equiv="keywords" content="How to create HTML5 Input Element"/>
<html>
<form action="#" method="post">
<p>
<label for="name">Name: </label>
<input type="text" id="name"><br />
<label for="address">Address: </label>
<input type="text" id="address"><br />
<label for="email">email: </label>
<input type="text" id="email"><br>
<input type="radio" name="sex" value="male"> Male<br>
<input type="radio" name="sex" value="female"> Female<br>
<input type="submit" value="send"> <input type="reset">
</p>
</form>
</html>

No comments:

Post a Comment