You guys will probally think I'm a slacker but I need to know how to add a box like this to my site where when someone enters there email address they get a free ebook. Whats this thing called by the way?
Buddy, This is called Opt-in Form, in html it is called simply a FORM. To collect emails you need to have some kind of back end where you transfer the data collected.... Like some service like aweber or getresponse may help to build you list.. then you set the form to redirect the user to the THANK You page/ Download page when visitor hits the Submit/Download button. Let me know if you have any other question...as this was very very broad question... WM
this is done by using html tag and then we apply the code(php ,.net)to download the code <html> <form> <table> <tr> <td>email<td><td><input type="text value="" name="email""><td></tr> <tr><td><input type="submit" name="submit" value="download"></td><tr> </table> </form> </html> <?php ?>