Simple code for Newsletter Subscription
A simple code for adding in your website so that visitors of your website can subscribe your newsletter.
<div id="subscribe-form">
<h2>Subscribe to Our Newsletter</h2>
<p>Enter your name and email address:</p>
<form action="mailto:Newsletter@Latestfoto.com?subject=Newsletter%20of%20Latestfoto.com" method="post" enctype="text/plain">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required />
<br />
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
<br />
<input type="submit" value="Subscribe" />
</form>
</div>
Comments
Post a Comment