-->

Create Ordered Form Project using simple HTML Code

HTML stands for Hyper Text Markup Language.HTML is Markup language,A markup language set of Tags and attributes. In this project using basic HTML tag and attribute as form,table,hr,dd,dl,input etc.
Ordered Form  Project using simple HTML Code,
<html>
<head>
<title>Multiple forms in a project
</title>
</head>
<body>
<h1 align="center">High Choice T-Shirt Collection</h1>
<form action="mailto:youremail@yahoo.com"method="post"enctype="text/plain">
What the size of T-Shirt you would like to recive?
<br>
<input name="size"type="radio"value"S">Small:
<input name="size"type="radio"value"M">Medium:
<input name="size"type="radio"value"L">Large:
<input name="size"type="radio"value"XL">Extra Large:
<input name="size"type="radio"value"XXL">XExtra Large:
<input name="size"type="radio"value"OT">Other:
<br>
<input type="submit"value="Send">
</form>
<hr>
<form action="mailto:youremail@yahoo.com"method="post"enctype="text/plain">
<table>
<tr>
<td>Name:</td>
<td>
<input type="text"Name="Name"size="50">
</td></tr><tr><td>Phone Number:</td>
<td><input type="text"Name="Phone"size="10">
</td></tr><tr><td>Adress:</td>
<td>
<input type="text"Name="AD"size="50">
</td></tr>
</table>
<input type="submit">
</form>
<hr>
<form action="mailto:youremail@yahoo.com"method="post"enctype="text/plain">
<dl>
<dt><b>How would you like to pay?<b>
<dd><input name="Pay"type="Radio"value="Cash"checked>Cash
<dd>
<input name="Pay"type="Radio"value="cheque">Cheque
<dl><dt>Credit Card
<dd>
<input Name="Pay"Type="radio"Value="Visa">Visa
<dd><input name="Pay"Type="radio"value="MC">Master Card
<dd><input name="pay"Type="radio"value="AE">American Express
</dl></dl>
<input type="submit"value="send">
</form>
</body>
</html>
</form>
</body>
</html>
Output
HTML Code
Output 
Note: Type your email id(youremail@yahoo.com) where indicate red colour.

You May Like Also Also Like This

Post a Comment

0 Comments