Web Forms Part 2


Hello everybody, welcome to our website where you will find everything for free.

This is forty-seventh video tutorial of CSS series.
In this video, you will get to something more about forms.
Let me give you the code of previously made form in Tutorial 46:


<div id="Form">

Name: <input type="text" /><br />

Email: <input type="text" /><br />

<input type="submit" value="Submit" />
</div>


This is the code of simplest form which you have to write in <body> section.